> ## 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.

# Introduction

> Liquidity data for tokenized stocks and commodities

RWA Pulse provides DEX liquidity data (TVL, volume, prices) for tokenized real-world assets across Solana, Ethereum, Base, Polygon, Arbitrum, BSC, and Avalanche.

**Use case**: Track liquidity depth for tokenized TSLA, NVDA, AAPL, gold (PAXG, XAUt), and 20+ other assets.

## Quick Start

Get your API key at [rwapulse.xyz/api-keys](https://rwapulse.xyz/api-keys), then:

```bash theme={null}
curl "https://rwapulse.xyz/api/v0/liquidity?assetType=stock" \
  -H "Authorization: Bearer rwa_your_key"
```

Response:

```json theme={null}
{
  "date": "2024-01-15",
  "count": 25,
  "data": [
    {
      "stock_symbol": "TSLA",
      "token_symbol": "TSLAx",
      "issuer": "xStocks",
      "network": "solana",
      "dex": "Raydium",
      "tvl_usd": "125000.50",
      "volume_24h_usd": "8500.00",
      "price_usd": "248.35"
    }
  ]
}
```

## Base URL

```
https://rwapulse.xyz/api/v0
```

## Endpoints

| Method | Path                        | Description              |
| ------ | --------------------------- | ------------------------ |
| POST   | `/keys`                     | Create API key (no auth) |
| GET    | `/liquidity`                | Latest liquidity         |
| GET    | `/liquidity/history`        | Historical data          |
| GET    | `/liquidity/asset/{symbol}` | Single asset detail      |
| GET    | `/liquidity/analytics`      | Time-series data         |
