All symbols
https://api.tickerbot.io/ v2/ tickersReturns the universe of tracked symbols (~14,514 US equities + top 100 crypto by market cap) in alphabetical order with a slim payload (ticker, name, asset_type, exchange, market_cap). Use cursor pagination to walk the full list, or pass ?tickers=... for bulk lookup of named symbols with full rows.
Query parameters
stringComma-separated list of symbols (up to 50). When set, the response returns the full row for each requested symbol; pagination params are ignored. Symbols missing from our universe come back with _not_found: true.
integerdefault 50Page size for the alphabetical walk. Max 1000.
stringOpaque cursor from the previous response's next_cursor field. Continues the walk from after that page.
stringSubstring filter over ticker (case-insensitive) and name. When set, results are ordered by market_cap DESC NULLS LAST.
stringFilter by asset type — typically equity or crypto. Matched case-insensitively against the stored value.
stringFilter by exchange code (uppercase). Common values: XNYS, XNAS, BATS.
stringFilter by sector name. Exact match against the stored sector field.
numberMinimum market cap (USD). Results are ordered by market_cap DESC NULLS LAST when set.
Status codes
200as_of, count, next_cursor, and results.400tickers list, or bulk lookup over 50 symbols.401Notes
- Cursors are opaque base64url tokens. Pass
next_cursorback unchanged as?cursor=...to walk forward. - The list mode returns five slim columns. To pull the full row for a known ticker, use
GET /v2/tickers/{ticker}or the bulk form above.