> For the complete documentation index, see [llms.txt](https://pacifica.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pacifica.gitbook.io/docs/api-documentation/api/rest-api/spot/get-bridge-info.md).

# Get bridge info

```
GET /api/v1/spot_assets/bridge/info
```

#### Response

* Status 200: Success

```json
{
  "success": true,
  "data": [
    {
      "symbol": "SOL",
      "minimum_deposit": "0.01",
      "withdrawal_fee": "0.001",
      "bridge_program": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
      "mint": null,
      "decimals": 9
    }
  ],
  "error": null,
  "code": null
}
```

<table><thead><tr><th width="208">Field</th><th width="186">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>"symbol"</code></td><td>string</td><td>Spot asset symbol</td></tr><tr><td><code>"minimum_deposit"</code></td><td>decimal string</td><td>Minimum deposit amount</td></tr><tr><td><code>"withdrawal_fee"</code></td><td>decimal string</td><td>Fee charged on withdrawals</td></tr><tr><td><code>"bridge_program"</code></td><td>string</td><td>Solana program address for the bridge</td></tr><tr><td><code>"mint"</code></td><td>string or null</td><td>Token mint address (null for native SOL)</td></tr><tr><td><code>"decimals"</code></td><td>integer</td><td>Token decimal precision</td></tr></tbody></table>

Response is cached for 1 minute.

* Status 500: Internal server error

#### Code Example (Python)

```python
import requests

response = requests.get(
    "/api/v1/spot_assets/bridge/info",
    headers={"Accept": "*/*"},
)

data = response.json()
```
