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

> This endpoint returns a list of all spot assets available on the exchange, including their trading parameters and collateral eligibility.

```http theme={null}
GET /api/v1/spot_assets
```

#### Query Parameters

<table><thead><tr><th width="240">Parameter</th><th width="120">Type</th><th width="120">Required</th><th>Description</th></tr></thead><tbody><tr><td><code>"include\_inactive"</code></td><td>boolean</td><td>No</td><td>Include inactive spot assets. Defaults to false.</td></tr><tr><td><code>"collateral\_enabled\_only"</code></td><td>boolean</td><td>No</td><td>Only return assets enabled as collateral. Defaults to false.</td></tr></tbody></table>

#### Response

* Status 200: Success

```json theme={null}
{
  "success": true,
  "data": [
    {
      "symbol": "SOL",
      "tick_size": "0.01",
      "lot_size": "0.01",
      "active": true,
      "collateral_enabled": true,
      "ltv_ratio": "0.80",
      "created_at": 1716200000000,
      "updated_at": 1716200000000
    }
  ],
  "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>"tick\_size"</code></td><td>decimal string</td><td>Minimum price increment</td></tr><tr><td><code>"lot\_size"</code></td><td>decimal string</td><td>Minimum quantity increment</td></tr><tr><td><code>"active"</code></td><td>boolean</td><td>Whether the asset is currently active for trading</td></tr><tr><td><code>"collateral\_enabled"</code></td><td>boolean</td><td>Whether the asset can be used as unified margin collateral</td></tr><tr><td><code>"ltv\_ratio"</code></td><td>decimal string</td><td>Loan-to-value ratio when used as collateral (e.g. "0.80" = 80%)</td></tr><tr><td><code>"created\_at"</code></td><td>integer</td><td>Timestamp in milliseconds</td></tr><tr><td><code>"updated\_at"</code></td><td>integer</td><td>Timestamp in milliseconds</td></tr></tbody></table>

Results are sorted alphabetically by symbol.

* Status 500: Internal server error

#### Code Example (Python)

```python theme={null}
import requests

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

data = response.json()
```
