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, processing, completed, failed. |
source_currency | string | Source stablecoin. |
source_network | string | Source blockchain network. |
source_address | string | Source wallet address. |
source_amount | string | Amount debited from source. |
destination_currency | string | Destination stablecoin. |
destination_network | string | Destination blockchain network. |
destination_address | string | Destination wallet address. |
destination_amount | string | Amount credited to destination. |
created_at | string | ISO 8601 timestamp of creation. |
completed_at | string or 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, stablecoins have been delivered to the destination wallet.