Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.chicago.global/llms.txt

Use this file to discover all available pages before exploring further.

Search stocks by symbol, name, sector, or industry with typo-tolerant fuzzy matching.

Query Parameters

ParameterTypeRequiredDefaultDescription
querystringYesSearch query (typo-tolerant, e.g., AAPL, apple, nvidia, semiconductor)
marketstringNoFilter by market (e.g., United States, United Kingdom)
sectorstringNoFilter by sector (e.g., Technology, Healthcare)
limitintegerNo20Max results (1-100)

Response

Returns an array of matching stocks:
[
  {
    "symbol": "AAPL.O",
    "name": "Apple Inc",
    "sector": "Technology",
    "industry": "Phones & Handheld Devices",
    "market": "United States",
    "exchange": "NASDAQ",
    "currency": "USD"
  },
  {
    "symbol": "164A.T",
    "name": "Applepark Co Ltd",
    "sector": "Industrials",
    "industry": "Highways & Rail Tracks",
    "market": "Japan",
    "exchange": "Tokyo",
    "currency": "JPY"
  }
]

Examples

# Search by name
curl "https://api.chicago.global/v1/stock/search?query=apple&limit=10" \
  -H "Authorization: Bearer YOUR_API_KEY"

# Search by symbol
curl "https://api.chicago.global/v1/stock/search?query=AAPL" \
  -H "Authorization: Bearer YOUR_API_KEY"

# Filter by market and sector
curl "https://api.chicago.global/v1/stock/search?query=semiconductor&market=United%20States&sector=Technology&limit=10" \
  -H "Authorization: Bearer YOUR_API_KEY"