---
title: "Get Instrument"
method: GET
path: "/api/instrument/{instrument_id}"
tags: ["instruments"]
---

# Get Instrument

`GET /api/instrument/{instrument_id}`

Get instrument details by ID.

## Path parameters

- `instrument_id` integer, required

## Response `200`

Successful Response

- DebtInstrumentResponse — Response schema for single instrument endpoint
  - `instrument_id` integer, required — Internal instrument ID
  - `entity_id` integer, nullable, required — Issuer entity ID
  - `instrument_type` string, nullable, required — Instrument type (e.g., CORPORATE_BOND, GOVERNMENT_BOND, COMMON_STOCK)
  - `asset_class` string, nullable, required — Asset class (e.g., FIXED_INCOME, EQUITY)
  - `short_name` string, nullable, required — Short name of instrument
  - `name` string, nullable, required — Full name of instrument
  - `unique_id` string, nullable — Unique ID of the instrument
  - `identifiers` InstrumentIdentifiers, required — Identifiers for instruments - currently supports ISIN.
    - `ISIN` string, nullable
  - `covenants` InstrumentCovenants, required — Covenant details for debt instruments.
    - `is_taxable` boolean, nullable
    - `secured` boolean, nullable
    - `seniority` string, nullable
    - `rank` string, nullable
    - `guaranteed` boolean, nullable
  - `miscellaneous` InstrumentMiscellaneous, required — Miscellaneous instrument details.
    - `trustee` string, nullable
    - `registrar` string, nullable
  - `issuance_details` InstrumentIssuanceDetails, required — Issuance details for instruments.
    - `issue_date` string, date, nullable
    - `face_value` string, nullable
    - `outstanding_face_value` string, nullable — Outstanding principal as of current date
    - `issue_size` string, nullable
    - `mode_of_issue` string, nullable
    - `is_listed` boolean, nullable
  - `coupon_details` InstrumentCouponDetails, required — Coupon details for debt instruments.
    - `coupon_type` string, nullable
    - `coupon` string, nullable
    - `next_coupon_rate` string, nullable
    - `benchmark` string, nullable
    - `spread` string, nullable
    - `coupon_frequency` string, nullable
    - `next_coupon_date` string, date, nullable
    - `previous_coupon_date` string, date, nullable
    - `day_count_convention` string, nullable
    - `shut_period` integer, nullable
    - `step_up_details` CouponAdjustmentDetails — Coupon adjustment details for step-up/step-down bonds.
      - `adjustment_rate` string, nullable — Rate by which coupon changes
      - `adjustment_date` string, date, nullable — Date when the adjustment occurs
      - `reason` string, nullable — Reason for the adjustment
    - `step_down_details` CouponAdjustmentDetails — Coupon adjustment details for step-up/step-down bonds.
      - `adjustment_rate` string, nullable — Rate by which coupon changes
      - `adjustment_date` string, date, nullable — Date when the adjustment occurs
      - `reason` string, nullable — Reason for the adjustment
  - `maturity_details` InstrumentMaturityDetails, required — Maturity details for debt instruments.
    - `maturity_date` string, date, nullable
    - `maturity_type` string, nullable
    - `maturity_amount` string, nullable
    - `is_callable` boolean, nullable
    - `is_puttable` boolean, nullable
    - `call_date` string, date, nullable
    - `put_date` string, date, nullable
  - `call_details` CallDetails, required — Call option details for callable bonds.
    - `is_callable` boolean, nullable
    - `call_date` string, date, nullable
    - `call_amount` string, nullable — Outstanding principal as of current date
  - `put_details` PutDetails, required — Put option details for puttable bonds.
    - `is_puttable` boolean, nullable
    - `put_date` string, date, nullable
    - `put_amount` string, nullable — Outstanding principal as of current date
  - `asset_cover_details` AssetCoverDetails — Asset cover details for secured debt instruments.
    - `secured_flag` string, nullable — Whether the instrument is secured (e.g., Secured, Unsecured)
    - `asset_coverage` string, nullable — What the asset covers (e.g., Principal + Interest, Principal Only)
    - `asset_coverage_percent` number, nullable — Asset coverage percentage (e.g., 150.00 means 150% coverage)
    - `secured_details` string, nullable — Detailed description of the security arrangement
    - `asset_list` AssetCoverAssetItem[], nullable — List of assets providing coverage
      - `asset_type` string, nullable — Type of asset (e.g., Immovable Assets, Movable Asset)
      - `security_details` string, nullable — Details of security arrangement
      - `remarks` string, nullable — Additional remarks about the asset

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/inferedge/apis/india-fixed-income-data-feed.md) · [All operations](https://skmtc.net/inferedge/apis/india-fixed-income-data-feed/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/inferedge/india-fixed-income-data-feed/versions/eea35c5e8d81/schema)
