Get transaction records
Get transaction records
POST /petty/getCoinOrder
<Description of the endpoint>
Request Headers
Content-Type
application/json
Request Body
{
"fromAddress": "0xe0676bc6eaac862f121f6d5b47951b",
"pageNo": "",
"pageSize": ""
}Request parameter Description
fromAddress
String
true
Query address
pageNo
String
false
page number
pageSize
String
false
Number of pages per page (default 100, maximum 100)
Response
{
"resCode": "800",
"resMsg": "成功",
"data": {
"totalCount": "10",
"pageContent": [
{
"fromCoinCode": "USDT(C-Chain)",
"toCoinCode": "USDT(ARB)",
"fromAmount": "5",
"toAmount": "3.997448",
"refundCoinAmt": "",
"createTime": "2024-10-08",
"orderId": "d13ec738-76ea-4615-a1bf-222860063fg",
"status": "receive_complete",
"chainFee": "0.002552",
"bridgeFee": "1",
"fromHash": "0x2e10c9725842cab9b4ff2f533f5eb50923c9edf67a",
"toHash": "0x03fe47832fb87a8ab86845f410919cda47c9781931cd",
"refundHash": "",
"fromAddress": "0xe0676bc6eaa",
"toAddress": "0xe0676bc6eaac8",
"refundAddress": "0xe0676bc6eaac8",
"depositHashExplore": "https://cchain.explorer.avax.network/tx/0x2e10c9725842cab9b4ff2f533f5eb5",
"receiveHashExplore": "https://arbiscan.io/tx/0x03fe47832fb87a8ab86845f410919cda47c9",
"refundHashExplore": ""
}
}{
"error": "Invalid request"
}Response Parameter Description
orderId
String
orderId
eg:d47e8b9b-c17f-432b-9285-a46c0a3ceb9a
fromCoinCode
String
eg: ETH
toCoinCode
String
Biteg:ETH
fromAmount
String
eg:1
toAmount
String
eg:0.1
refundCoinAmt
String
eg:1
status
String
Order Status
chainFee
String
Accurate to six decimal places
bridgeFee
String
Accurate to six decimal places
fromHash
String
Deposit Hash
toHash
String
Send Hash
refundHash
String
return hash
fromAddress
String
fromAddress
toAddress
String
toAddress
refundAddress
String
refundAddress
depositHashExplore
String
Browser deposit coin hash link
receiveHashExplore
String
Browser coin hash link
refundHashExplore
String
Browser coin refund hash link
createTime
String
createTime
Last updated