API Documentation
⌘K
API Key
Get free key GET
/api/1/bonds/ticks/{identifier}Bond Tick Data API
Returns FINRA TRACE trade-level tick data for the given bond identifier (4h delayed). Paginated by date.
Parameters
4datestringDate YYYY-MM-DD (defaults to most recent available)
limitnumberMax ticks to return (default 200, max 1000)
offsetnumberPagination offset (default 0)
identifierstringrequiredBond identifier: ISIN, CUSIP, or FIGI
Responses
Was this helpful?
Request
curl -X GET \
'https://api.eulerpool.com/api/1/bonds/ticks/US912810TD00?date=2025-12-31&limit=10&offset=0' \
-H 'Accept: application/json'200 Response
{
"isin": "US693475BF18",
"date": "2024-01-15T00:00:00.000Z",
"ticks": {
"t": 1705316400000,
"p": 100.234,
"v": 50000,
"si": "2",
"rp": "1",
"c": []
},
"total": 211,
"offset": 0,
"limit": 200
}