How do I list stock tokens?
Use GET /api/v1/stocks. It returns StockRowDto[].
curl https://api.squeeze.plus/api/v1/stocksEach row has the name, ticker, token address, share scale, bid, ask, prices, gap, pool facts, flow, Score, and source state. dexPrice is Chain price. refPrice is Base price. premiumPct is Price gap.
| Field | Type | Meaning |
|---|---|---|
symbol | string | Stock-token ticker. |
name, logoUrl, address | string or null | Token display facts. |
multiplier | number | Shares tracked by one token. |
isHalted | boolean | Last quote halt state. |
bid, ask | number or null | Stock quote sides. |
ts | number | Metric time in Unix seconds. |
refPrice, dexPrice, premiumPct | number or null | Base price, Chain price, and Price gap. |
premiumChange15mPp, premiumChange1hPp | number or null | Gap change in percentage points. |
onchainSupply | number or null | Stock-token supply on the chain. |
canonicalFloat, memeFloat | number or null | Stock tokens in the two pool groups. |
memeFloatUnverified | number or null | v4 amount not fit for the main meme sum. |
memeLockRatio | number or null | Meme-pool share of chain supply. |
canonicalFloatChange15mPct, memeFloatChange15mPct | number or null | Pool-token change in 15 minutes. |
canonicalNetFlow15m | number or null | Net stock tokens into main pools from swaps. |
canonicalDepthUsd | number or null | Main pool value used by the method. |
memePoolCount, activeMemePoolCount | number | Found and active meme-pool counts. |
memeVolume1hUsd | number or null | One-hour meme-pool swap value. |
squeezeScore | number or null | Rule-based Score. |
comparable | boolean | Headline prices are fit to compare. |
dataStatus | object | Source state, times, and notes. |
Check comparable before comparing the two prices. Then read dataStatus:
| Field | Type |
|---|---|
state | current, old, partial, unavailable, or halted |
quoteTs, poolTs | Unix seconds or null |
computedTs | Unix seconds |
scoreComplete | boolean |
notes | string array |
missingFields | string array of fields that are not known |
Sample
Section titled “Sample”This call has no page query. It returns the current row set held by the service. A row can still have null fields.