# 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()
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://pacifica.gitbook.io/docs/api-documentation/api/rest-api/spot/get-bridge-info.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
