Get transaction status
Returns the deposits and withdrawals seen at a bridge address, newest first. Responses are cursor-paginated: each request returns one page plus a nextCursor. To read the full history, pass each nextCursor back as cursor until it comes back null. To track only recent activity, keep requesting the first page without a cursor.
Path Parameters
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
Maximum number of transactions per page. A page may contain fewer transactions than requested and still have a following page.
1 <= x <= 100Opaque 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.
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 Response
Successfully retrieved transaction status
One page of transactions for the given address, newest first. This is a page, not the full history for the address.
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"