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

> Returns all rampable stablecoins (e.g. USDC, EURC) and stablebonds (e.g. CETES)
available on the specified blockchain. The `currency` parameter controls sort priority —
assets matching the requested currency appear first, but all rampable assets for the
chain are always returned. Use the `identifier` from the response when creating quotes.



## OpenAPI

````yaml /openapi.json get /ramp/assets
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:
  /ramp/assets:
    get:
      tags:
        - Assets
      summary: List assets
      description: >-
        Returns all rampable stablecoins (e.g. USDC, EURC) and stablebonds (e.g.
        CETES)

        available on the specified blockchain. The `currency` parameter controls
        sort priority —

        assets matching the requested currency appear first, but all rampable
        assets for the

        chain are always returned. Use the `identifier` from the response when
        creating quotes.
      operationId: get_rampable_assets
      parameters:
        - name: blockchain
          in: query
          description: The blockchain to get assets for (e.g., "stellar", "solana")
          required: true
          schema:
            $ref: '#/components/schemas/Blockchain'
        - name: currency
          in: query
          description: >-
            The fiat currency for sort priority (e.g., "mxn"). Assets matching
            this currency appear first.
          required: true
          schema:
            type: string
        - name: wallet
          in: query
          description: The wallet address to fetch balances for
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The rampable assets for the chain
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RampableAssetsResponse'
components:
  schemas:
    Blockchain:
      type: string
      description: |-
        Canonical blockchain enum for API serialization.
        Use this type for JSON APIs and WebSocket messages.
        For database storage, convert to `BlockchainType`.
      enum:
        - stellar
        - solana
        - base
        - polygon
        - monad
    RampableAssetsResponse:
      type: object
      required:
        - assets
      properties:
        assets:
          type: array
          items:
            $ref: '#/components/schemas/RampableAsset'
      example:
        assets:
          - balance: '1500.00'
            currency: mxn
            identifier: CETES:GC3CW7EDYRTWQ635VDIGY6S4ZUF5L6TQ7AA4MWS7LEQDBLUSZXV7UPS4
            image: https://assets.etherfuse.com/cetes.png
            name: Cetes
            symbol: CETES
          - balance: '250.00'
            currency: usd
            identifier: USDC:GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5
            image: https://assets.etherfuse.com/usdc.png
            name: USD Coin
            symbol: USDC
    RampableAsset:
      type: object
      description: >-
        Rampable Assets Endpoint

        Returns a list of assets that can be ramped to/from for a given
        blockchain and currency
      required:
        - symbol
        - identifier
        - name
      properties:
        balance:
          type:
            - string
            - 'null'
          description: Balance in the wallet (if available)
        currency:
          type:
            - string
            - 'null'
          description: >-
            The fiat currency this token is backed by (e.g., "mxn" for
            stablebonds, "usd" for USDC)
        identifier:
          type: string
          description: >-
            Chain-specific identifier (e.g., "CETES:GCRYUGD5..." for Stellar,
            mint address for Solana)
        image:
          type:
            - string
            - 'null'
          description: >-
            Image URL for the asset (fetched from stellar.toml for Stellar,
            etc.)
        name:
          type: string
          description: Display name
        symbol:
          type: string
          description: Token symbol (e.g., "CETES")
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````