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

# Get Bridge Parameters

> This endpoint returns bridge parameters for a single spot asset by symbol, including deposit minimums, withdrawal fees, and on-chain program addresses.

```http theme={null}
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 theme={null}
{
  "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 theme={null}
import requests

symbol = "SOL"

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

data = response.json()
```
