Skip to main content
GET
Get transaction status

Path Parameters

address
string
required

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.

Query Parameters

limit
integer
default:50

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

Required range: 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.

Available options:
true

Response

Successfully retrieved transaction status

transactions
object[]
required

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

nextCursor
string | null
required

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.

Example:

"eyJsYXN0SWQiOiI0MiJ9"