API Documentation

⌘K
GET/api/1/screener/metadata

Screener Metadata

Returns available filter dimensions for the stock screener: distinct countries (with stock count), sectors, and industries. Use this to build screener UIs or validate filter parameters.

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/screener/metadata' \
  -H 'Accept: application/json'
200 Response
{
  "countries": {
    "country": "US",
    "countryName": "United States",
    "continent": "North America",
    "count": 5432
  },
  "sectors": {
    "sector": "Technology",
    "count": 1234
  },
  "industries": {
    "industry": "Software",
    "sector": "Technology",
    "count": 456
  },
  "totalStocks": 45000
}