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

> Get latest liquidity data

Returns current liquidity for all assets or filtered by type.

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

## Parameters

| Name        | Required | Default | Description            |
| ----------- | -------- | ------- | ---------------------- |
| `assetType` | No       | all     | `stock` or `commodity` |

## Response

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

## Common Mistake

Forgetting `assetType` returns both stocks and commodities. Filter if you need one type.
