Get Large Transaction List#
Get the list of large-value transactions on the chains.
Request Path#
GET
https://web3.okx200.com/api/v5/xlayer/transaction/large-transaction-listRequest Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| chainShortName | String | Yes | The abbreviated name of the blockchain network, e.g, XLAYER |
| type | String | No | Query transactions with amount more than this value, with a minimum threshold of 100. The default is 100. |
| height | String | No | Block height |
| page | String | No | Page |
| limit | String | No | The number of results returned per request. The maximum is 50. The default is 20. |
Response Parameters#
| Parameter | Type | Description |
|---|---|---|
| page | String | Current page number |
| limit | String | The amount of data |
| totalPage | String | Total number of pages |
| chainFullName | String | The full name of the blockchain network, e.g. X Layer |
| chainShortName | String | The abbreviated name of the blockchain network, e.g. XLAYER |
| transactionList | Array | Transaction list |
| > txid | String | Transaction hash |
| > blockHash | String | Block hash |
| > height | String | Block height |
| > transactionTime | String | The Unix timestamp of the transaction time, in milliseconds format, e.g., 1597026383085 |
| > input | String | Input address |
| > output | String | Output address |
| > isInputContract | Bol | Is the input address a contract address |
| > isOutputContract | Bol | Is the output address a contract address |
| > amount | String | Transaction amount |
| > transactionSymbol | String | Transaction symbol |
| > txfee | String | Transaction fee |
| > methodId | String | Method ID |
| > transactionType | String | Transaction type 0:original transaction 1:EIP2930 2:EIP1559 |
| > state | String | Transaction status success fail pending |
Request Example#
shell
curl --location --request GET 'https://web3.okx200.com/api/v5/xlayer/transaction/large-transaction-list?chainShortName=xlayer&limit=1' \
--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'
Response Example#
json
{
"code": "0",
"msg": "",
"data": [
{
"page": "1",
"limit": "1",
"totalPage": "10000",
"chainFullName": "X Layer",
"chainShortName": "XLAYER",
"transactionList": [
{
"txid": "0x2fffea8d78e32e742326d0d9b3309ad3c17e06caccbec8c2e51eb844f9369c86",
"blockHash": "0x2dbc439ca3be95cf2283f9066bc8a91848e76566b04f225c1e26ce665d6128e0",
"height": "31135875",
"transactionTime": "1755493597000",
"input": "0x94f79cc5884f02f5038f5a8c0d78658c86832c73",
"output": "0x51883502679b7e3eb3e822dc54d9c0e45ff11f41",
"isInputContract": false,
"isOutputContract": false,
"amount": "113.81610704542136",
"transactionSymbol": "OKB",
"txfee": "0.000021",
"methodId": "",
"transactionType": "0",
"state": "success"
}
]
}
]
}
