Skip to main content
GET
Get transaction status

路径参数

address
string
必填

The bridge address to query for transaction status, taken from the /deposit or /withdraw response. EVM, Solana, Tron, and Bitcoin address formats are supported. EVM addresses are normalized before the request is forwarded upstream.

查询参数

limit
integer
默认值:50

Maximum number of transactions per page. A page may contain fewer transactions than requested and still have a following page.

必填范围: 1 <= x <= 100
cursor
string

Opaque continuation token returned as nextCursor by the previous response. Omit it to request the first page. URL-encode it, since cursors can contain characters such as +, /, and =. Invalid, tampered, or cross-address tokens return 400; restart the walk without a cursor when that happens.

paginate
enum<string>

Compatibility parameter forwarded upstream for existing integrations. Pagination applies whether or not it is sent, so new integrations should omit it and use cursor and limit alone. When sent, the only supported value is true.

可用选项:
true

响应

Successfully retrieved transaction status

transactions
object[]
必填

One page of transactions for the given address, newest first. This is a page, not the full history for the address.

nextCursor
string | null
必填

Opaque continuation token for the next page, or null when the pagination walk is complete. Pass it back verbatim as cursor on the next request; never parse, modify, construct, or reuse it with a different address. Stop on null rather than on an empty page or a page shorter than limit.

示例:

"eyJsYXN0SWQiOiI0MiJ9"