> ## Documentation Index
> Fetch the complete documentation index at: https://docs.etherfuse.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List stablebonds

> Returns all stablebonds with current prices, supplies, and multi-chain
breakdown. Data is cached for ~5 minutes.

Public — no API key required.



## OpenAPI

````yaml /openapi.json get /lookup/stablebonds
openapi: 3.1.0
info:
  title: Etherfuse FX API
  description: Partner-facing ramp API for onramps, offramps, swaps, and KYC.
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sand.etherfuse.com
    description: Sandbox
security:
  - ApiKeyAuth: []
tags:
  - name: Authentication
    description: >-
      Partner JWT authentication — exchange a JWT for an access token, or launch
      a user into the app.
  - name: Lookup
    description: >-
      Public reference data: exchange rates, stablebonds, bond costs, country
      codes.
  - name: Assets
    description: Rampable stablecoins and stablebonds available per blockchain.
  - name: Onboarding
    description: Hosted and programmatic customer onboarding.
  - name: Agreements
    description: Legal agreement acceptance during onboarding.
  - name: Bank Accounts
    description: Register and retrieve customer bank accounts.
  - name: Quotes
    description: Price quotes for onramps, offramps, and swaps.
  - name: Orders
    description: Create, track, and manage ramp orders.
  - name: Swaps
    description: Crypto-to-crypto swaps.
  - name: Sponsored
    description: Token approvals for sponsored (gasless) offramps.
  - name: Customers
    description: Customer (child-organization) records.
  - name: Wallets
    description: Register and manage customer wallets.
  - name: KYC
    description: Submit and check customer KYC status.
  - name: Webhooks
    description: Event notification subscriptions.
  - name: Organizations
    description: Organization identity, child orgs, and partner fees.
paths:
  /lookup/stablebonds:
    get:
      tags:
        - Lookup
      summary: List stablebonds
      description: |-
        Returns all stablebonds with current prices, supplies, and multi-chain
        breakdown. Data is cached for ~5 minutes.

        Public — no API key required.
      operationId: get_stablebonds
      responses:
        '200':
          description: All stablebonds with pricing and supply
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StablebondsCachable'
        '503':
          description: Stablebonds data not yet available
      security:
        - {}
components:
  schemas:
    StablebondsCachable:
      type: object
      description: |-
        Full stablebonds lookup response, cached as a unit.
        Uses string blockchain keys (same pattern as BridgeConfig).
      required:
        - calculatedAt
        - stablebonds
      properties:
        calculatedAt:
          type: string
          description: Timestamp (RFC 3339) the snapshot was computed.
        stablebonds:
          type: array
          items:
            $ref: '#/components/schemas/StablebondInfoCachable'
          description: All stablebonds in the snapshot.
      example:
        calculatedAt: '2024-01-15T12:00:00Z'
        stablebonds:
          - blockchains:
              - blockchain: stellar
                tokenIdentifier: CETES-GC3CW7EDYRTWQ635VDIGY6S4ZUF5L6TQ7AA4MWS7LEQDBLUSZXV7UPS4
                totalSupply: '106595.334047'
              - blockchain: solana
                tokenIdentifier: AvvetPGuuB5FD5m86fpw3LtDKyQoUFT1mG9WarNQLW4q
                totalSupply: '916496.867925'
            bondCurrency: MXN
            netAmountDecimal: '1309439.053036'
            netValueDecimal: '1467139.953242'
            purchaseOrderAmount: '283617.373522'
            redeemOrderAmount: '0'
            solanaMintAddress: AvvetPGuuB5FD5m86fpw3LtDKyQoUFT1mG9WarNQLW4q
            symbol: CETES
            tokenPriceDecimal: '1.120434'
    StablebondInfoCachable:
      type: object
      description: A single stablebond's price, net amounts, and per-chain supply.
      required:
        - symbol
        - netAmountDecimal
        - netValueDecimal
        - bondCurrency
        - tokenPriceDecimal
        - purchaseOrderAmount
        - redeemOrderAmount
        - blockchains
        - solanaMintAddress
      properties:
        blockchains:
          type: array
          items:
            $ref: '#/components/schemas/BlockchainSupplyCachable'
          description: Per-chain supply breakdown.
        bondCurrency:
          type: string
          description: Bond's settlement currency (ISO 4217).
        netAmountDecimal:
          type: string
          description: Net token amount outstanding.
        netValueDecimal:
          type: string
          description: Net value outstanding, in the bond's currency.
        purchaseOrderAmount:
          type: string
          description: Open purchase-order amount.
        redeemOrderAmount:
          type: string
          description: Open redeem-order amount.
        solanaMintAddress:
          type: string
          description: Canonical Solana mint address.
        symbol:
          type: string
          description: Bond symbol (e.g. `CETES`).
        tokenPriceDecimal:
          type: string
          description: Current per-token price.
    BlockchainSupplyCachable:
      type: object
      description: |-
        Per-chain supply breakdown. Uses string blockchain identifier
        (same pattern as BridgeConfig — API converts to typed enum at boundary).
      required:
        - blockchain
        - tokenIdentifier
        - totalSupply
      properties:
        blockchain:
          type: string
          description: Chain identifier (e.g. `solana`, `stellar`).
        notCountedVaultedAmount:
          type:
            - string
            - 'null'
          description: Supply held in vaults and excluded from circulating totals, if any.
        tokenIdentifier:
          type: string
          description: Token identifier on this chain (mint address or asset code).
        totalSupply:
          type: string
          description: Total supply on this chain.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````