> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thiqwave.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Bridge Transaction

> Retrieve details of a bridge transaction.

## 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

<CodeGroup>
  ```bash cURL theme={null}
  curl https://api.thiqwave.com/v1/bridge/bridge_1234567890 \
    -H "X-API-Key: your_api_key"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.thiqwave.com/v1/bridge/bridge_1234567890', {
    method: 'GET',
    headers: {
      'X-API-Key': 'your_api_key',
    },
  });

  const bridge = await response.json();
  console.log(bridge);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://api.thiqwave.com/v1/bridge/bridge_1234567890',
      headers={'X-API-Key': 'your_api_key'}
  )

  bridge = response.json()
  print(bridge)
  ```
</CodeGroup>

### Response

```json theme={null}
{
  "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

| 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 `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.
