API Documentation

⌘K
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

4
datestring
query

Date YYYY-MM-DD (defaults to most recent available)

limitnumber
query

Max ticks to return (default 200, max 1000)

offsetnumber
query

Pagination offset (default 0)

identifierstringrequired
path

Bond 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
}