Skip to main content
GET
https://rwapulse.xyz/api/v0
/
liquidity
/
history
Get History
curl --request GET \
  --url https://rwapulse.xyz/api/v0/liquidity/history \
  --header 'Authorization: Bearer <token>'
Returns historical snapshots with optional filters.
curl "https://rwapulse.xyz/api/v0/liquidity/history?symbol=TSLA&startDate=2024-01-01&limit=30" \
  -H "Authorization: Bearer rwa_your_key"

Parameters

NameRequiredDefaultDescription
symbolNo-Filter by asset (e.g., TSLA)
startDateNo-Start date (YYYY-MM-DD)
endDateNo-End date (YYYY-MM-DD)
limitNo1000Max records

Response

{
  "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. Use limit to avoid large responses.