Skip to content

How do I list stock tokens?

Use GET /api/v1/stocks. It returns StockRowDto[].

Terminal window
curl https://api.squeeze.plus/api/v1/stocks

Each 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.

FieldTypeMeaning
symbolstringStock-token ticker.
name, logoUrl, addressstring or nullToken display facts.
multipliernumberShares tracked by one token.
isHaltedbooleanLast quote halt state.
bid, asknumber or nullStock quote sides.
tsnumberMetric time in Unix seconds.
refPrice, dexPrice, premiumPctnumber or nullBase price, Chain price, and Price gap.
premiumChange15mPp, premiumChange1hPpnumber or nullGap change in percentage points.
onchainSupplynumber or nullStock-token supply on the chain.
canonicalFloat, memeFloatnumber or nullStock tokens in the two pool groups.
memeFloatUnverifiednumber or nullv4 amount not fit for the main meme sum.
memeLockRationumber or nullMeme-pool share of chain supply.
canonicalFloatChange15mPct, memeFloatChange15mPctnumber or nullPool-token change in 15 minutes.
canonicalNetFlow15mnumber or nullNet stock tokens into main pools from swaps.
canonicalDepthUsdnumber or nullMain pool value used by the method.
memePoolCount, activeMemePoolCountnumberFound and active meme-pool counts.
memeVolume1hUsdnumber or nullOne-hour meme-pool swap value.
squeezeScorenumber or nullRule-based Score.
comparablebooleanHeadline prices are fit to compare.
dataStatusobjectSource state, times, and notes.

Check comparable before comparing the two prices. Then read dataStatus:

FieldType
statecurrent, old, partial, unavailable, or halted
quoteTs, poolTsUnix seconds or null
computedTsUnix seconds
scoreCompleteboolean
notesstring array
missingFieldsstring array of fields that are not known

This call has no page query. It returns the current row set held by the service. A row can still have null fields.

Get one stock and its chart data.