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",
  "source_currency": "USDC",
  "source_network": "solana",
  "source_address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
  "source_amount": "1000.00",
  "destination_currency": "USDC",
  "destination_network": "ethereum",
  "destination_address": "0x742d35Cc6634C0532925a3b844Bc123e5fA42f9c",
  "destination_amount": "999.50",
  "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, processing, completed, failed.
source_currencystringSource stablecoin.
source_networkstringSource blockchain network.
source_addressstringSource wallet address.
source_amountstringAmount debited from source.
destination_currencystringDestination stablecoin.
destination_networkstringDestination blockchain network.
destination_addressstringDestination wallet address.
destination_amountstringAmount credited to destination.
created_atstringISO 8601 timestamp of creation.
completed_atstring or 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, stablecoins have been delivered to the destination wallet.