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

# Get Assets

> Returns a map of supported fungible assets across all chains. You can optionally filter by specific chain IDs.



## OpenAPI

````yaml /api-reference/router-api/openapi.yaml get /v2/fungible/assets
openapi: 3.1.0
info:
  title: Router API
  description: Cross-chain transfer routing API for the Initia ecosystem.
  version: 1.0.0
servers:
  - url: https://router-api.initia.xyz
    description: Mainnet
  - url: https://router-api.initiation-2.initia.xyz
    description: Testnet
security: []
paths:
  /v2/fungible/assets:
    get:
      tags:
        - Assets & Chains
      summary: Get Assets
      description: >-
        Returns a map of supported fungible assets across all chains. You can
        optionally filter by specific chain IDs.
      operationId: getAssets
      parameters:
        - name: chain_ids
          in: query
          description: >-
            Comma-separated list of chain IDs to filter by (e.g.
            "1,42161,interwoven-1"). Returns all supported chains if omitted.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  chain_to_assets_map:
                    type: object
                    description: A map of chain IDs to their supported assets.
                    additionalProperties:
                      type: object
                      properties:
                        assets:
                          type: array
                          items:
                            type: object
                            properties:
                              chain_id:
                                type: string
                                description: Chain ID where the asset exists.
                              denom:
                                type: string
                                description: Asset denomination.
                              decimals:
                                type: integer
                                description: Number of decimal places.
                              symbol:
                                type: string
                                description: Asset ticker symbol.
                              name:
                                type: string
                                description: Human-readable asset name.
                              logo_uri:
                                type: string
                                description: URL to the asset logo.
                              is_cw20:
                                type: boolean
                                description: Whether the asset is a CW20 token.
                              is_evm:
                                type: boolean
                                description: Whether the asset is an EVM token.
                              is_svm:
                                type: boolean
                                description: Whether the asset is an SVM token.
                              origin_chain_id:
                                type: string
                                description: Chain ID where the asset originated.
                              origin_denom:
                                type: string
                                description: Original denomination on the origin chain.
                              trace:
                                type: string
                                description: IBC trace path.
              example:
                chain_to_assets_map:
                  interwoven-1:
                    assets:
                      - chain_id: interwoven-1
                        denom: uinit
                        decimals: 6
                        symbol: INIT
                        name: Initia
                        logo_uri: https://raw.githubusercontent.com/.../init.png
                        is_cw20: false
                        is_evm: false
                        is_svm: false
                        origin_chain_id: interwoven-1
                        origin_denom: uinit
                        trace: ''

````