v1

latestOpenAPI 3.1.0MIT2026-08-0453113564.4 KB
Polymarket Stocks

Search stocks

Search supported stocks and ETFs, then enrich the matches with Polymarket activity. Results prioritize exact ticker matches first, then prefixes, then name/alias matches and include a compact summary block for the last 7 UTC calendar days.

get/polymarket/stocks/v1/search

Query parameters

qstring required

Search query (minimum 2 non-$ characters after trimming)

Example:tesla

Search query (minimum 2 non-$ characters after trimming)

limitinteger

Maximum number of results to return

Example:20

Maximum number of results to return

Response

Successful Response

querystring required

Original search query

countinteger required

Total number of matching results before the limit is applied

period_daysinteger required

Fixed lookback window used for each summary block

Example response

{
  "query": "tesla",
  "count": 1,
  "period_days": 7,
  "results": [
    {
      "ticker": "TSLA",
      "name": "Tesla Inc.",
      "type": "Stock",
      "exchange": "NASDAQ",
      "sector": "Consumer Discretionary",
      "country": "United States",
      "aliases": [
        "Tesla",
        "Elon"
      ],
      "summary": {
        "trade_count": 14,
        "buzz_score": 71.4,
        "trend": "rising",
        "sentiment_score": 0.34,
        "bearish_pct": 33,
        "bullish_pct": 67,
        "current_market_count": 12,
        "market_count": 27,
        "total_liquidity": 94750,
        "unique_traders": 119
      }
    }
  ]
}