GET
/
v1
/
transaction
/
list
Get Transactions History
curl --request GET \
  --url https://sandbox-openapi.bisonblock.ai/api/v1/transaction/list \
  --header 'BIZ-API-KEY: <api-key>' \
  --header 'BIZ-API-NONCE: <api-key>' \
  --header 'BIZ-API-SIGNATURE: <api-key>'
{
  "code": 123,
  "data": {
    "pageNo": 123,
    "pageSize": 123,
    "totalSize": 123,
    "totalPages": 123,
    "list": [
      {
        "orderNo": "<string>",
        "requestId": "<string>",
        "symbol": "<string>",
        "txHash": "<string>",
        "fromAddress": "<string>",
        "toAddress": "<string>",
        "amount": "<string>",
        "type": "<string>",
        "state": "<string>",
        "time": 123
      }
    ],
    "prevPage": 123,
    "nextPage": 123
  },
  "msg": "<string>"
}

Authorizations

BIZ-API-KEY
string
header
required

This field contains the API key.

BIZ-API-NONCE
string
header
required

This field contains the nonce.

BIZ-API-SIGNATURE
string
header
required

This field contains the signature.

Query Parameters

type
string
default:""

deposit/withdraw

pageNo
integer
default:1

The page index, starting from 1.

Required range: x >= 1
pageSize
integer
default:10

The number of items per page. Page size is optional. If not included, the default size will be 10

Response

200 - */*

OK

code
integer

0 is for success, others are for failure

data
object
msg
string