查询账户下,从钱包 API 广播接口发出的订单列表,支持查询 EVM 和 UTXO 模型网络的交易,按时间倒序排列。
GET https://www.okx.com/api/v5/wallet/post-transaction/orders
Parameter | Type | Required | Description |
---|---|---|---|
address | String | No | 查地址下列表,地址或账户 ID 需要必填一项,如果都传,以账户 ID 为准。 |
accountId | String | No | 查账户下列表,地址或账户 ID 需要必填一项 |
chainIndex | String | No | 链唯一标识 |
txStatus | String | No | 交易状态: 1 : 排队中 2 : 成功 3 :失败 |
orderId | String | No | 交易订单唯一标识 |
cursor | String | No | 游标 |
limit | String | No | 返回条数,默认返回最近的 20 条,最多 100 条 |
Parameter | Type | Description |
---|---|---|
chainIndex | String | 链唯一标识 |
address | String | 地址 |
accountId | String | 账户唯一标识符 |
orderId | String | 订单 Id |
txStatus | String | 交易状态: 1 : 排队中 2 : 成功 3 :失败 |
txHash | String | 交易哈希 |
limit | String | 返回条数,默认返回最近的 20 条,最多 100 条 |
curl --location --request GET 'https://www.okx.com/api/v5/wallet/post-transaction/orders?accountId=c79e7775-9e78-4a2d-b27f-9021f3bf5fca' \
--header 'Content-Type: application/json' \
--header 'OK-ACCESS-PROJECT: 86af********d1bc' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z'
{
"code": "0",
"msg": "success",
"data": [
{
"chainIndex": "1",
"accountId": "c79e7775-9e78-4a2d-b27f-9021f3bf5fca",
"orderId": "016cf21d020be6c2f071dad9bbd8ec5cb9342fa8",
"address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3",
"txHash": "0xb240e65dd9156b4a450be72f6c9fe41be6f72397025bb465b21a96ee9871a589",
"txstatus": "2"
},
{
"chainIndex": "1",
"accountId": "c79e7775-9e78-4a2d-b27f-9021f3bf5fca",
"orderId": "592051a92a744627022955be929ecb5c9e777705",
"address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3",
"txHash": "0xc401ffcd2a2b4b1db42ce68dfde8e63c0a1e9653484efb2873dbf5d0cbeb227a",
"txstatus": "1"
}
]
}