API Documentation
⌘K
API Key
Get free key GET
/api/1/market/l2/{ticker}Level 2 Order Book
Returns the top-of-book Level 2 snapshot (bids/asks) for a US-listed ticker. Requires Polygon.io API key.
Parameters
1tickerstringrequiredTicker symbol (e.g. AAPL)
Responses
Was this helpful?
Request
curl -X GET \
'https://api.eulerpool.com/api/1/market/l2/AAPL' \
-H 'Accept: application/json'200 Response
{
"ticker": "string",
"timestamp": 0,
"bids": {
"price": 0,
"size": 0
},
"asks": {
"price": 0,
"size": 0
},
"midpoint": 0,
"spread": 0
}