Skip to main content

Get Bridge Transaction

Retrieve the full details of a bridge transaction by its ID, including current status and conversion information.

Endpoint

GET /v1/bridge/:id

Request

curl https://api.thiqwave.com/v1/bridge/bridge_1234567890 \
  -H "X-API-Key: your_api_key"

Response

{
  "bridge_id": "bridge_1234567890",
  "quote_id": "quote_5555555555",
  "status": "completed",
  "direction": "onramp",
  "source_currency": "AED",
  "source_amount": 100000,
  "destination_currency": "USDC",
  "destination_network": "polygon",
  "destination_address": "0x742d35Cc6634C0532925a3b844Bc123e5fA42f9c",
  "destination_amount": "959.00",
  "created_at": "2026-04-09T14:30:00Z",
  "completed_at": "2026-04-09T14:33:00Z"
}

Response Fields

FieldTypeDescription
bridge_idstringUnique bridge transaction identifier.
quote_idstringAssociated quote ID.
statusstringCurrent status: pending, converting, completed, failed.
directionstring"onramp" or "offramp".
source_currencystringSource currency.
source_amountinteger | stringAmount in source currency.
destination_currencystringDestination currency.
destination_networkstring | nullDestination blockchain network.
destination_addressstring | nullDestination wallet address.
destination_accountobject | nullDestination bank account.
destination_amountinteger | stringAmount in destination currency.
created_atstringISO 8601 timestamp of creation.
completed_atstring | nullISO 8601 timestamp of completion.

Notes

  • Check the status field to determine the current state of the bridge transaction.
  • Use the bridge_id to track the transaction in your system.
  • Once status becomes completed, funds have been converted and delivered.