You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: llms-full.txt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -492,6 +492,7 @@ Base facts: API mainnet `https://api.orderly.org`, testnet `https://testnet-api.
492
492
- [Get Current Holding 1](https://orderly.network/docs/build-on-omnichain/restful-api/private/get-current-holding-1): [GET /v1/admin/client/holding] Get current holding
493
493
- [Get Internal Transfer History 1](https://orderly.network/docs/build-on-omnichain/restful-api/private/get-internal-transfer-history-1): [GET /v1/admin/internal_transfer_history] Get internal transfer history
494
494
- [Get Asset History 1](https://orderly.network/docs/build-on-omnichain/restful-api/private/get-asset-history-1): [GET /v1/admin/asset/history] Get asset history
495
+
- [Get Asset Conversion History](https://orderly.network/docs/build-on-omnichain/restful-api/private/get-asset-conversion-history): [GET /v1/admin/asset/convert_history] Get asset conversion history
495
496
- [Get Leverage Setting 1](https://orderly.network/docs/build-on-omnichain/restful-api/private/get-leverage-setting-1): [GET /v1/admin/client/leverage] Get leverage setting
496
497
- [Get Orders 1](https://orderly.network/docs/build-on-omnichain/restful-api/private/get-orders-1): [GET /v1/admin/orders] Get orders
497
498
- [Get One Position Info 1](https://orderly.network/docs/build-on-omnichain/restful-api/private/get-one-position-info-1): [GET /v1/admin/position/{symbol}] Get one position info
Returns asset conversion history records from the Builder's trading platform. Only the Builder Admin can query this endpoint.
8855
+
8856
+
Use `page` and `size` for offset pagination, or pass the `next_cursor` from the previous response as `cursor` for consistent keyset pagination. When provided, `cursor` takes precedence over `page`. Cursor pagination is recommended for reconciliation and exports because offset pagination may duplicate or skip records when new conversions arrive between requests.
8857
+
8858
+
`start_t` and `end_t` are required. `start_t` must be less than or equal to `end_t`, and the query range cannot exceed 180 days. To filter by user, provide either `user_address` or `user_account`, but not both.
description: Page number, starting from 1. Ignored when `cursor` is provided.
8868
+
required: false
8869
+
example: 1
8870
+
schema:
8871
+
type: integer
8872
+
minimum: 1
8873
+
default: 1
8874
+
- name: size
8875
+
in: query
8876
+
description: Number of rows per page.
8877
+
required: false
8878
+
example: 20
8879
+
schema:
8880
+
type: integer
8881
+
minimum: 1
8882
+
maximum: 100
8883
+
default: 20
8884
+
- name: cursor
8885
+
in: query
8886
+
description: Keyset cursor for consistent pagination. Pass the `next_cursor` value from the previous response. Takes precedence over `page` when provided.
8887
+
required: false
8888
+
example: 617574
8889
+
schema:
8890
+
type: integer
8891
+
format: int64
8892
+
- name: start_t
8893
+
in: query
8894
+
description: Start of the query window as a 13-digit Unix timestamp in milliseconds. Must be less than or equal to `end_t`; the query range cannot exceed 180 days.
8895
+
required: true
8896
+
example: 1772706491837
8897
+
schema:
8898
+
type: integer
8899
+
format: int64
8900
+
minimum: 1000000000000
8901
+
maximum: 9999999999999
8902
+
- name: end_t
8903
+
in: query
8904
+
description: End of the query window as a 13-digit Unix timestamp in milliseconds. Must be greater than or equal to `start_t`; the query range cannot exceed 180 days.
8905
+
required: true
8906
+
example: 1778747916938
8907
+
schema:
8908
+
type: integer
8909
+
format: int64
8910
+
minimum: 1000000000000
8911
+
maximum: 9999999999999
8912
+
- name: user_address
8913
+
in: query
8914
+
description: Filter by user wallet address. Provide either `user_address` or `user_account`, but not both.
description: Page metadata. When using cursor pagination, `total` is a point-in-time reference value; follow the `next_cursor` chain instead of relying on `total` for reconciliation or export.
14444
+
next_cursor:
14445
+
description: Cursor for the next page, equal to the last `convert_id` in the current page. `null` means there are no more records. Pass this value as `cursor` in the next request.
0 commit comments