Other helpful APIs

Get all transaction records by address

GET open/v1/order/getOrderListByAddress

Query Parameters

NameTypeDescription

evmAddress*

String

user evm Address

Headers

NameTypeDescription

appKey*

String

developer account appKey

timestamp*

Int

current timestamp used in signature verification

signature*

String

signature generated to verify developer account. Please refer to Signature verification to generate a signature

expireTime*

Int

timeout time in ms for a request

{
    "code": 200,
    "status": 0,
    "msg": "The request is successful",
    "data": {
        "orders": [
            {
                // order info 
            },
            ...
        ]
    }
}

Get order detail by hash and corresponding EVM address

GET /open/v1/order/getOrderDetailByHashAndEvmAddress

Query Parameters

NameTypeDescription

evmAddress*

String

user evm Address

chain*

String

source chain

hash*

String

the transaction hash

Headers

NameTypeDescription

appKey*

String

developer account appKey

timestamp*

Int

current timestamp used in signature verification

signature*

String

signature generated to verify developer account. Please refer to Signature verification to generate a signature

expireTime*

Int

timeout time in ms for a request

{
    "code": 200,
    "status": 0,
    "msg": "The request is successful",
    "data": {
        "orders": [
            {
                // order info 
            },
            ...
        ]
    }
}

Get order detail by sn

GET /open/v1/order/getOrderDetail

Path Parameters

NameTypeDescription

sn*

String

order sn

Headers

NameTypeDescription

appKey*

String

developer account appKey

expireTime*

Int

timeout time in ms for a request

signature*

String

signature generated to verify developer account. Please refer to Signature verification to generate a signature

timestamp*

Int

current timestamp used in signature verification

Last updated