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

# GET /crypto/assets

> List all available cryptocurrency assets

## Endpoint

```
GET https://api.marketdataset.ai/crypto/assets
```

## Parameters

No parameters required.

## Credit cost

**\$0.001** per request

## Example request

```bash theme={null}
curl "https://api.marketdataset.ai/crypto/assets" \
  -H "X-API-KEY: sk_your_key"
```

## Example response

```json theme={null}
{
  "assets": [
    { "symbol": "BTC", "name": "Bitcoin", "exchange": "binance" },
    { "symbol": "ETH", "name": "Ethereum", "exchange": "binance" },
    { "symbol": "SOL", "name": "Solana", "exchange": "binance" }
  ],
  "meta": {
    "request_id": "req_abc123",
    "credits_used": 0.001,
    "credits_remaining": 49.999
  }
}
```
