Skip to content

How do I read one stock token?

Use GET /api/v1/stocks/:symbol. The symbol is case-insensitive. range can be 1h, 6h, 24h, or 7d. The default is 24h.

Terminal window
curl 'https://api.squeeze.plus/api/v1/stocks/NVDA?range=6h'

The reply has:

  • stock: token facts.
  • metrics: one StockRowDto, or null.
  • ref: the last stock quote, or null.
  • series: at most 600 chart rows.
  • poolCounts: pool scope facts.
  • alerts: recent events for this symbol.

It does not put full pool rows in this reply. Use the pool list and page them.

Each chart row has ts, premiumPct, dexPrice, refPrice, canonicalFloat, memeFloat, squeezeScore, memeVolume1hUsd, and comparable. It does not repeat full dataStatus in each point.

In version 1, poolCounts.returned is 0 here. Full pool rows come from the paged pool route. discoveredTotal still gives the full found count.

List this stock’s pools.