Skip to main content
GET
https://rwapulse.xyz/api/v0
/
liquidity
Get Latest
curl --request GET \
  --url https://rwapulse.xyz/api/v0/liquidity \
  --header 'Authorization: Bearer <token>'
Returns current liquidity for all assets or filtered by type.
curl "https://rwapulse.xyz/api/v0/liquidity?assetType=stock" \
  -H "Authorization: Bearer rwa_your_key"

Parameters

NameRequiredDefaultDescription
assetTypeNoallstock or commodity

Response

{
  "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.