> 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-spot-assets.md).

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