# Get spot assets

```
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
{
  "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
import requests

response = requests.get(
    "/api/v1/spot_assets",
    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-spot-assets.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.
