API Documentation
⌘K
API Key
Get free key POST
/api/1/screener/screenStock Screener
Filter stocks by fundamental criteria (market cap, P/E, sector, country, etc.)
Request Body
application/jsonobjectfiltersobjectFilter criteria (e.g. { country: "US", sector: "Technology", marketCapMin: 1000000000 })
orderobjectSort order (e.g. { field: "marketCap", direction: "desc" })
pagenumberPage number (0-based)
Default:
0sizenumberResults per page (max 100)
Default:
100Responses
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
}
]