Liquity V1 Supply API

Liquity V1 circulating supply and BAMM stats endpoints.

Operations 3

GET /v1/lusd_total_supply.txt LUSD Total Supply #
GET /v1/lqty_circulating_supply.txt LQTY Circulating Supply #
GET /v1/lusd_cb_bamm_stats.json LUSD Chicken Bonds BAMM Stats #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/liquity-v1-supply-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

liquity-v1-supply-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Liquity Protocol V1 Supply API
  description: 'The Liquity static JSON API at api.liquity.org covers circulating supplies, protocol stats, stability pool data, prices, governance epochs, yield opportunities, borrow rates, and a points leaderboard. Data is generated on-chain and published as flat files to GitHub Pages. Liquity V1 issues LUSD stablecoin backed by ETH. Liquity V2 (BOLD) supports multi-collateral borrowing with WETH, wstETH, and rETH.

    '
  version: 1.0.0
  contact:
    name: Liquity Team
    url: https://www.liquity.org/
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  termsOfService: https://www.liquity.org/terms
servers:
- url: https://api.liquity.org
  description: Liquity API (GitHub Pages)
tags:
- name: V1 Supply
  description: Liquity V1 circulating supply and BAMM stats endpoints.
paths:
  /v1/lusd_total_supply.txt:
    get:
      operationId: getLusdTotalSupply
      summary: LUSD Total Supply
      description: 'Returns the current total supply of LUSD stablecoin as a plaintext decimal number, derived from on-chain contract state via Ethers.js.

        '
      tags:
      - V1 Supply
      responses:
        '200':
          description: LUSD total supply as a plaintext number.
          content:
            text/plain:
              schema:
                type: string
                description: Decimal numeric string representing total LUSD supply.
                example: '142857123456789000000000000'
  /v1/lqty_circulating_supply.txt:
    get:
      operationId: getLqtyCirculatingSupply
      summary: LQTY Circulating Supply
      description: 'Returns the current circulating supply of LQTY governance token as a plaintext decimal number.

        '
      tags:
      - V1 Supply
      responses:
        '200':
          description: LQTY circulating supply as a plaintext number.
          content:
            text/plain:
              schema:
                type: string
                description: Decimal numeric string representing LQTY circulating supply.
                example: '85000000000000000000000000'
  /v1/lusd_cb_bamm_stats.json:
    get:
      operationId: getLusdChickenBondsBammStats
      summary: LUSD Chicken Bonds BAMM Stats
      description: 'Returns JSON with BAMM (B.AMM) debt and 7-day, 14-day, and 30-day APR figures for the LUSD Chicken Bonds stability pool integration with B.Protocol.

        '
      tags:
      - V1 Supply
      responses:
        '200':
          description: LUSD Chicken Bonds BAMM statistics.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BammStats'
              example:
                timestamp: '2025-08-29T05:00:00Z'
                bamm_debt: 1525216.022184752
                bamm_apr_7d: 0
                bamm_apr_14d: 0
                bamm_apr_30d: 0
components:
  schemas:
    BammStats:
      type: object
      description: BAMM stability pool statistics for LUSD Chicken Bonds.
      properties:
        timestamp:
          type: string
          format: date-time
          description: ISO 8601 timestamp when metrics were captured.
          example: '2025-08-29T05:00:00Z'
        bamm_debt:
          type: number
          format: double
          description: Outstanding BAMM debt amount.
          example: 1525216.022184752
        bamm_apr_7d:
          type: number
          description: 7-day annualized percentage rate for BAMM.
          example: 0
        bamm_apr_14d:
          type: number
          description: 14-day annualized percentage rate for BAMM.
          example: 0
        bamm_apr_30d:
          type: number
          description: 30-day annualized percentage rate for BAMM.
          example: 0
      required:
      - timestamp
      - bamm_debt
      - bamm_apr_7d
      - bamm_apr_14d
      - bamm_apr_30d
externalDocs:
  description: Liquity API GitHub Repository
  url: https://github.com/liquity/api.liquity.org