API Documentation

⌘K
GET/api/1/bonds/list

Bond List / Search API

Returns a list of available bonds. Optionally filter by ISIN prefix, exchange, or description keyword. Paginated.

Parameters

4
qstring
query

Search keyword (matches ISIN or description)

exchangestring
query

Filter by exchange code

offsetnumber
query

Pagination offset (default 0)

limitnumber
query

Results per page (default 50, max 200)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/bonds/list?q=Apple&exchange=XNAS&offset=0&limit=10' \
  -H 'Accept: application/json'
200 Response
{
  "data": {
    "isin": "US912810TD00",
    "figi": "string",
    "description": "string",
    "exchange": "string"
  },
  "total": 12345,
  "offset": 0,
  "limit": 50
}