Himbit logoHimbit Docs

Get Builder Trades

List builder trades

GET
/builder/trades

Query Parameters

id?string

Filter by trade identifier.

maker_address?string

Return trades matching this maker address.

market?string

Filter by condition (market) identifier.

asset_id?string

Filter by token identifier.

before?string

Unix timestamp; include trades strictly before this instant.

after?string

Unix timestamp; include trades strictly after this instant.

next_cursor?string

Base64-encoded offset for pagination. Use MA== to start; LTE= means no more pages.

Response Body

application/json

application/json

curl -X GET "https://example.com/builder/trades"
{  "data": [    {      "id": "string",      "taker_order_id": "string",      "market": "string",      "asset_id": "string",      "side": "string",      "size": "string",      "fee_rate_bps": "string",      "price": "string",      "status": "MATCHED",      "match_time": "2019-08-24T14:15:22Z",      "last_update": "2019-08-24T14:15:22Z",      "outcome": "string",      "maker_address": "string",      "owner": "string",      "transaction_hash": "string",      "bucket_index": 0,      "maker_orders": [        {          "order_id": "string",          "maker_address": "string",          "owner": "string",          "matched_amount": "string",          "fee_rate_bps": "string",          "price": "string",          "asset_id": "string",          "outcome": "string",          "side": "string"        }      ],      "type": "TAKER"    }  ],  "next_cursor": "string",  "limit": 0,  "count": 0}