> ## 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.

# Get all stablebonds

> Returns a list of all stablebonds with their current prices, supplies, and multi-chain breakdown.
This endpoint is public and does not require authentication.
Data is cached for 5 minutes.




## OpenAPI

````yaml /openapi.yaml get /lookup/stablebonds
openapi: 3.1.0
info:
  title: FX API
  version: 1.0.0
  description: >
    API for managing FX operations including onboarding, quotes, orders, and
    customer management.

    This API provides endpoints for managing customers, bank accounts, crypto
    wallets, orders, and webhooks.
servers:
  - url: https://api.etherfuse.com
    description: Production API
  - url: https://api.sand.etherfuse.com
    description: Sandbox API (for testing)
security: []
tags:
  - name: Lookup
    description: Public endpoints for looking up stablebond and exchange rate data
  - name: Assets
    description: Get available assets for ramping
  - name: Onboarding
    description: Customer onboarding and KYC
  - name: Bank Accounts
    description: Manage customer bank accounts
  - name: Agreements
    description: Handle customer agreements and consents
  - name: Quotes
    description: Get quotes for conversions
  - name: Orders
    description: Create and manage orders
  - name: Swaps
    description: Create and manage swaps
  - name: Customers
    description: Manage customers
  - name: Crypto Wallets
    description: Manage crypto wallets
  - name: Webhooks
    description: Manage webhook subscriptions
  - name: Organizations
    description: Manage organizations and child organizations
paths:
  /lookup/stablebonds:
    get:
      tags:
        - Lookup
      summary: Get all stablebonds
      description: >
        Returns a list of all stablebonds with their current prices, supplies,
        and multi-chain breakdown.

        This endpoint is public and does not require authentication.

        Data is cached for 5 minutes.
      operationId: getStablebonds
      responses:
        '200':
          description: Stablebonds retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StablebondsLookupResponse'
              example:
                calculatedAt: '2024-01-15T12:00:00Z'
                stablebonds:
                  - symbol: CETES
                    netAmountDecimal: '1309439.053036'
                    netValueDecimal: '1467139.953242'
                    bondCurrency: MXN
                    tokenPriceDecimal: '1.120434'
                    purchaseOrderAmount: '283617.373522'
                    redeemOrderAmount: '0'
                    blockchains:
                      - blockchain: stellar
                        tokenIdentifier: >-
                          CETES-GC3CW7EDYRTWQ635VDIGY6S4ZUF5L6TQ7AA4MWS7LEQDBLUSZXV7UPS4
                        totalSupply: '106595.334047'
                      - blockchain: solana
                        tokenIdentifier: AvvetPGuuB5FD5m86fpw3LtDKyQoUFT1mG9WarNQLW4q
                        totalSupply: '916496.867925'
                    solanaMintAddress: AvvetPGuuB5FD5m86fpw3LtDKyQoUFT1mG9WarNQLW4q
components:
  schemas:
    StablebondsLookupResponse:
      type: object
      properties:
        calculatedAt:
          type: string
          format: date-time
          description: ISO 8601 timestamp of when supply data was calculated
        stablebonds:
          type: array
          items:
            $ref: '#/components/schemas/StablebondInfo'
    StablebondInfo:
      type: object
      properties:
        symbol:
          type: string
          description: Token symbol (e.g., "CETES", "USTRY")
        netAmountDecimal:
          type: string
          description: Net token amount across all chains after adjustments
        netValueDecimal:
          type: string
          description: Net value in bond currency (net_amount * token_price)
        bondCurrency:
          type: string
          description: Bond's native currency (e.g., "MXN", "USD")
        tokenPriceDecimal:
          type: string
          description: Current token price in bond currency
        purchaseOrderAmount:
          type: string
          description: Tokens from matured purchase orders (not yet minted)
        redeemOrderAmount:
          type: string
          description: Tokens from unredeemed divestments (already paid but not burned)
        blockchains:
          type: array
          items:
            $ref: '#/components/schemas/BlockchainSupply'
          description: Per-chain supply breakdown
        solanaMintAddress:
          type: string
          description: Solana address of the stablebond mint (core identifier)
    BlockchainSupply:
      type: object
      properties:
        blockchain:
          type: string
          enum:
            - solana
            - stellar
            - base
            - polygon
          description: Blockchain name
        tokenIdentifier:
          type: string
          description: Chain-specific token identifier
        totalSupply:
          type: string
          description: Total supply on this chain
        notCountedVaultedAmount:
          type: string
          nullable: true
          description: Amount vaulted and not counted in circulating supply

````