API Documentation

⌘K
GET/api/1/bonds/profile/{identifier}

Bond Profile API

Returns profile information for the given bond identifier, including coupon, maturity, and issuer details

Parameters

1
identifierstringrequired
path

Bond identifier: ISIN, CUSIP, or FIGI

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/bonds/profile/US912810TD00' \
  -H 'Accept: application/json'
200 Response
{
  "isin": "US912810TD00",
  "figi": "BBG0152KFHS6",
  "cusip": "string",
  "coupon": 2.25,
  "maturityDate": "2052-02-15T00:00:00.000Z",
  "bondType": "US Government",
  "issueDate": "2022-03-15T00:00:00.000Z",
  "offeringPrice": 100,
  "paymentFrequency": "Semi-Annual",
  "industryGroup": "Government",
  "industrySubGroup": "U.S. Treasuries"
}