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

# Get History

> Get historical liquidity data

Returns historical snapshots with optional filters.

```bash theme={null}
curl "https://rwapulse.xyz/api/v0/liquidity/history?symbol=TSLA&startDate=2024-01-01&limit=30" \
  -H "Authorization: Bearer rwa_your_key"
```

## Parameters

| Name        | Required | Default | Description                    |
| ----------- | -------- | ------- | ------------------------------ |
| `symbol`    | No       | -       | Filter by asset (e.g., `TSLA`) |
| `startDate` | No       | -       | Start date (YYYY-MM-DD)        |
| `endDate`   | No       | -       | End date (YYYY-MM-DD)          |
| `limit`     | No       | 1000    | Max records (clamped to 5000)  |

## Response

```json theme={null}
{
  "filters": {
    "stockSymbol": "TSLA",
    "startDate": "2024-01-01",
    "limit": 30
  },
  "count": 30,
  "data": [
    {
      "stock_symbol": "TSLA",
      "token_symbol": "TSLAx",
      "tvl_usd": "125000.50",
      "volume_24h_usd": "8500.00",
      "snapshot_date": "2024-01-15"
    }
  ]
}
```

## Common Mistake

Without `symbol`, returns all assets. `limit` must be an integer >= 1.
