latestSwagger 2.02026-08-12187723.0 MB

c4a12725cdb5

reference_data

Fixed income

The fixed income endpoint provides a daily updated list of available bonds. It returns an array containing detailed information about each bond, including identifiers, names, and other relevant attributes.

get/bonds

Query parameters

symbolstring

The ticker symbol of an instrument for which data is requested

exchangestring

Filter by exchange name

mic_codestring

Filter by market identifier code (MIC) under ISO 10383 standard

countrystring

Filter by country name or alpha code, e.g., United States or US

format'JSON' | 'CSV'

The format of the response data

delimiterstring

The separator used in the CSV response data

show_planboolean

Adds info on which plan symbol is available

pageinteger

Page number of the results to fetch

outputsizeinteger

Determines the number of data points returned in the output

Response

statusstring required

Response status

Example response

{
  "result": {
    "count": 6,
    "list": [
      {
        "symbol": "US2Y",
        "name": "US Treasury Yield 2 Years",
        "country": "United States",
        "currency": "USD",
        "exchange": "NYSE",
        "mic_code": "XNYS",
        "type": "Bond",
        "access": {
          "global": "Basic",
          "plan": "Basic",
          "plan_business": "Basic"
        }
      }
    ]
  },
  "status": "ok"
}