> 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-parameters.md).

# Get bridge parameters

```
GET /api/v1/spot_assets/bridge/parameters/{symbol}
```

#### Path Parameters

<table><thead><tr><th width="208">Parameter</th><th width="120">Type</th><th width="120">Required</th><th>Description</th></tr></thead><tbody><tr><td><code>symbol</code></td><td>string</td><td>Yes</td><td>The spot asset symbol (e.g. SOL)</td></tr></tbody></table>

Example: `/api/v1/spot_assets/bridge/parameters/SOL`

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

* Status 404: Asset not found or no active bridge for the symbol.
* Status 500: Internal server error

#### Code Example (Python)

```python
import requests

symbol = "SOL"

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

data = response.json()
```
