---
title: "Lookup borrowing debt market by asset"
method: GET
path: "/api/v1/markets/borrow/debts/lookup"
tags: ["Market"]
---

# Lookup borrowing debt market by asset

`GET /api/v1/markets/borrow/debts/lookup`

## Query parameters

- `asset_id` string, required — Asset ID for lookup
- `with_text` boolean — Include text variation fields
- `with_value` boolean — Calculate and include USD values for amounts, where applicable

## Response `200`

Success response

- BorrowDebtMarketObjResponse
  - `data` BorrowDebtMarket, required — Borrowing market, debt info
    - `asset_info` AssetInfo, required — Asset identifiers with associated metadata
      - `asset` AssetSpec, required — Provides a unique identifier for an asset for use throughout the Neptune API. IDs are unique across asset domains (contract tokens, native denoms, etc)
        - `id` string, required
        - `group` union, required
          - 'native'
          - 'token'
        - `group_key` string, required
      - `metadata` AssetMetadata, required — Additional metadata for assets
        - `name` string, required — Full name of the asset
        - `symbol` string, required — Symbol of the asset, e.g.: `NEPT` `INJ`
        - `symbol_denom` string, required — Denom symbol for the asset (e.g. `inj` for `INJ`, `sat` for `BTC`)
        - `decimals_denom` integer, required — Denom exponent, or num. of decimal places that shift between denom/standard amounts (e.g. `18` for `INJ`)
        - `decimals_display` integer, required — Number of decimals used when displaying amounts of this asset (this is subjective and used for generating text representations)
      - `classification` union, required — The asset's classification metadata. Assets are classfied to provide context on their usage throughout the Neptune API (e.g. regular assets, neptune receipt tokens, LSTs, etc.) Each asset belongs to only a single classification type. This object contains metadata pertaining to the given classification. While some fields may be common among the distinct classifcations, each classification is distinct and subject to independent change.
        - object
          - `kind` 'regular', required
          - `neptune_receipt_asset` AssetSpec, required — Provides a unique identifier for an asset for use throughout the Neptune API. IDs are unique across asset domains (contract tokens, native denoms, etc)
            - `id` string, required
            - `group` union, required
              - …
            - `group_key` string, required
        - object
          - `kind` 'neptune_receipt_token', required
          - `origin_asset` AssetSpec, required — Provides a unique identifier for an asset for use throughout the Neptune API. IDs are unique across asset domains (contract tokens, native denoms, etc)
            - `id` string, required
            - `group` union, required
              - …
            - `group_key` string, required
        - object
          - `kind` 'liquid_staking_token', required
          - `origin_asset` AssetSpec, required — Provides a unique identifier for an asset for use throughout the Neptune API. IDs are unique across asset domains (contract tokens, native denoms, etc)
            - `id` string, required
            - `group` union, required
              - …
            - `group_key` string, required
    - `rate` MarketRate, required
      - `apr` string, required — Market rate in APR standard as a decimal percentage
      - `apy` string, required — Market rate in APY standard as a decimal percentage
      - `extra` object, required
        - `text` object, nullable, required — Human-readable field variants. Will not be null when query param `with_text` is `true`.
          - `apy` string, required
          - `apr` string, required
    - `config` BorrowDebtConfig, required
      - `enabled` boolean, required — Market enabled state
      - `borrow_cap` string, nullable, required — The global max amount which can be borrowed
      - `interest_fee` string, required — The protocol (base) interest rate that is charged to borrowers.
      - `borrow_halt_utilization` string, required — The maximum utilization ratio at which new borrow positions can be opened.
      - `extra` object, required
        - `text` object, nullable, required — Human-readable field variants. Will not be null when query param `with_text` is `true`.
          - `interest_fee` string, required
          - `borrow_halt_utilization` string, required
          - `borrow_cap` string, required
        - `value` object, nullable, required — USD values for the corresponding amounts above. Will not be null when query param `with_value` is `true`. ### Note This variant group contains an additional `price` field (set to the number used in value calculation). The embedded text group will contain the text variant if `with_text` was specified as well.
          - `price` string, required — Price used in value calculations
          - `borrow_cap` string, nullable, required
          - `extra` object, required
            - `text` object, nullable, required — Human-readable variants of USD values. Will not be null when query params `with_text` and `with_value` are `true`.
              - …
    - `state` BorrowDebtState, required
      - `shares` string, required
      - `balance` string, required
      - `utilization_accumulator` string, required — Asset utilization tracker.
      - `time_last_distributed_interest` string, date-time, required — Timestamp used to keep track of the last time interest was distributed.
      - `extra` object, required
        - `text` object, nullable, required — Human-readable field variants. Will not be null when query param `with_text` is `true`.
          - `shares` string, required
          - `balance` string, required
          - `time_last_distributed_interest` string, required
        - `value` object, nullable, required — USD values for the corresponding amounts above. Will not be null when query param `with_value` is `true`. ### Note This variant group contains an additional `price` field (set to the number used in value calculation). The embedded text group will contain the text variant if `with_text` was specified as well.
          - `shares` string, required
          - `balance` string, required
          - `price` string, required — Price used in value calculations
          - `extra` object, required
            - `text` object, nullable, required — Human-readable variants of USD values. Will not be null when query params `with_text` and `with_value` are `true`.
              - …
  - `error` unknown, required
  - `status` integer, required — HTTP status. Successful responses are guaranteed to be < `400`. Conversely, error responses are guaranteed to be >= `400`.
  - `status_text` string, required — HTTP status text

## Other responses

- `500` — Server error response
- `default`

## Changes

- **2026-04-17** `05e0ec4b9b94` — 8 breaking, 8 info
  - removed the required property `data/state/allOf[#/components/schemas/BorrowDebtState]/balance_sum` from the response with the `200` status
  - removed the required property `data/state/allOf[#/components/schemas/BorrowDebtState]/extra/text/balance_sum` from the response with the `200` status
  - removed the required property `data/state/allOf[#/components/schemas/BorrowDebtState]/extra/text/principal_sum` from the response with the `200` status
  - removed the required property `data/state/allOf[#/components/schemas/BorrowDebtState]/extra/value/balance_sum` from the response with the `200` status
  - …12 more
- **2026-04-02** `3e68b318eeaa` — 10 breaking, 10 info
  - the response property `data/config/allOf[#/components/schemas/BorrowDebtConfig]/extra/value/extra/text/borrow_cap` became nullable for the status `200`
  - the response property `data/config/allOf[#/components/schemas/BorrowDebtConfig]/extra/value/extra/text/borrow_cap` became optional for the status `200`
  - removed the required property `data/state/allOf[#/components/schemas/BorrowDebtState]/debt_sum` from the response with the `200` status
  - removed the required property `data/state/allOf[#/components/schemas/BorrowDebtState]/extra/text/debt_sum` from the response with the `200` status
  - …16 more
- …earlier changes not shown

[Full history](https://skmtc.dev/cryptechdev/apis/neptune-api-v2/changes/api/v1/markets/borrow/debts/lookup/get.md)

---

[API](https://skmtc.dev/cryptechdev/apis/neptune-api-v2.md) · [All operations](https://skmtc.dev/cryptechdev/apis/neptune-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cryptechdev/neptune-api-v2/revisions/05e0ec4b9b94/schema)
