API Documentation

⌘K
POST/api/1/screener/screen

Stock Screener

Filter stocks by fundamental criteria (market cap, P/E, sector, country, etc.)

Request Body

application/json
object
filtersobject

Filter criteria (e.g. { country: "US", sector: "Technology", marketCapMin: 1000000000 })

orderobject

Sort order (e.g. { field: "marketCap", direction: "desc" })

pagenumber

Page number (0-based)

Default:0
sizenumber

Results per page (max 100)

Default:100

Responses

Was this helpful?
Request
curl -X POST \
  'https://api.eulerpool.com/api/1/screener/screen' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json'
200 Response
[
  {
  "isin": "US0378331005",
  "ticker": "AAPL",
  "name": "Apple",
  "country": "string",
  "sector": "string",
  "industry": "string",
  "marketCap": 0
}
]