Get Bridge Transaction
Retrieve the full details of a bridge transaction by its ID, including current status and conversion information.Endpoint
Request
Response
Response Fields
| Field | Type | Description |
|---|---|---|
bridge_id | string | Unique bridge transaction identifier. |
quote_id | string | Associated quote ID. |
status | string | Current status: pending, converting, completed, failed. |
direction | string | "onramp" or "offramp". |
source_currency | string | Source currency. |
source_amount | integer | string | Amount in source currency. |
destination_currency | string | Destination currency. |
destination_network | string | null | Destination blockchain network. |
destination_address | string | null | Destination wallet address. |
destination_account | object | null | Destination bank account. |
destination_amount | integer | string | Amount in destination currency. |
created_at | string | ISO 8601 timestamp of creation. |
completed_at | string | null | ISO 8601 timestamp of completion. |
Notes
- Check the
statusfield to determine the current state of the bridge transaction. - Use the
bridge_idto track the transaction in your system. - Once status becomes
completed, funds have been converted and delivered.