API Documentation
⌘K
API Key
Get free key GET
/api/1/bonds/listBond List / Search API
Returns a list of available bonds. Optionally filter by ISIN prefix, exchange, or description keyword. Paginated.
Parameters
4qstringSearch keyword (matches ISIN or description)
exchangestringFilter by exchange code
offsetnumberPagination offset (default 0)
limitnumberResults 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
}