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

# Get /v2/info/chains

> Get all supported chains along with additional data useful for building applications + frontends that interface with them (e.g. logo URI, IBC capabilities, fee assets, bech32 prefix, etc...)



## OpenAPI

````yaml swagger get /v2/info/chains
openapi: 3.0.0
info:
  title: Skip Go API
  description: >-
    Simple APIs to build seamless cross-chain products that do more with fewer
    transactions. For devs with all levels of cross-chain experience.
  version: 0.1.0
servers:
  - url: https://api.skip.build
    description: Production
  - url: https://api.dev.skip.build
    description: Development
  - url: http://localhost:8080
    description: Local
security: []
tags:
  - name: Info
    description: APIs that return general information useful for a variety of operations
  - name: Fungible
    description: >-
      APIs swaps, transfers, and contract calls within the IBC/Cosmos Ecosystem,
      EVM ecosystem, and between them, including automatic DEX aggregation,
      bridge routing, and denom recommendation. Typical usage is /route to
      generate routing info and quotes, followed by /msgs to generate msgs for
      signing
  - name: Transaction
    description: >-
      APIs for broadcasting transactions within the IBC/Cosmos ecosystem, EVM
      ecosystem, and between them, and tracking their status and any subsequent
      transfers if routing assets cross chain. Typical usage is /submit to
      broadcast a transaction, followed by /status to query its status
paths:
  /v2/info/chains:
    get:
      tags:
        - Info
      description: >-
        Get all supported chains along with additional data useful for building
        applications + frontends that interface with them (e.g. logo URI, IBC
        capabilities, fee assets, bech32 prefix, etc...)
      operationId: chains
      parameters:
        - in: query
          name: chain_ids
          required: false
          schema:
            type: array
            items:
              type: string
          description: >-
            Chain IDs to limit the response to, defaults to all chains if not
            provided
          examples:
            All:
              value: null
              summary: Get all chains
            Osmosis and Cosmos Hub:
              value:
                - osmosis-1
                - cosmoshub-4
              summary: Get Osmosis and Cosmos Hub
        - in: query
          name: include_evm
          required: false
          schema:
            type: boolean
          description: Whether to include EVM chains in the response
          example: false
        - in: query
          name: include_svm
          required: false
          schema:
            type: boolean
          description: Whether to include SVM chains in the response
        - in: query
          name: only_testnets
          required: false
          schema:
            type: boolean
          description: Whether to display only testnets in the response
          example: false
      responses:
        '200':
          description: Returns a list of supported chains with additional data
          content:
            application/json:
              example:
                chains:
                  - chain_name: cosmoshub
                    chain_id: cosmoshub-4
                    pfm_enabled: true
                    cosmos_module_support:
                      authz: true
                      feegrant: true
                    supports_memo: true
                    logo_uri: >-
                      https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png
                    bech32_prefix: cosmos
                    fee_assets:
                      - denom: uatom
                        gas_price:
                          low: '0.01'
                          average: '0.025'
                          high: '0.03'
                    chain_type: cosmos
                    ibc_capabilities:
                      cosmos_pfm: true
                      cosmos_ibc_hooks: true
                      cosmos_memo: true
                      cosmos_autopilot: true
                    is_testnet: false
                    pretty_name: Cosmos Hub
                  - chain_name: osmosis
                    chain_id: osmosis-1
                    pfm_enabled: true
                    cosmos_module_support:
                      authz: true
                      feegrant: true
                    supports_memo: true
                    bech32_prefix: osmo
                    logo_uri: >-
                      https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png
                    fee_assets:
                      - denom: uosmo
                        gas_price:
                          low: '0.0025'
                          average: '0.025'
                          high: '0.04'
                    chain_type: cosmos
                    ibc_capabilities:
                      cosmos_pfm: true
                      cosmos_ibc_hooks: true
                      cosmos_memo: true
                      cosmos_autopilot: true
                    is_testnet: false
                    pretty_name: Osmosis
              schema:
                type: object
                properties:
                  chains:
                    type: array
                    items:
                      $ref: '#/components/schemas/Chain'
                    description: Array of supported chain-ids
components:
  schemas:
    Chain:
      type: object
      required:
        - chain_name
        - chain_id
        - pfm_enabled
        - cosmos_module_support
        - supports_memo
        - bech32_prefix
        - fee_assets
        - chain_type
        - ibc_capabilities
        - is_testnet
        - pretty_name
      properties:
        chain_name:
          description: Name of the chain
          type: string
        chain_id:
          description: Chain-id of the chain
          type: string
        pfm_enabled:
          description: Whether the PFM module is enabled on the chain
          type: boolean
        cosmos_module_support:
          $ref: '#/components/schemas/CosmosModuleSupport'
          description: Supported cosmos modules
        supports_memo:
          description: Whether the chain supports IBC memos
          type: boolean
        logo_uri:
          description: chain logo URI
          nullable: true
          type: string
        bech32_prefix:
          description: Bech32 prefix of the chain
          type: string
        fee_assets:
          description: Fee assets of the chain
          items:
            $ref: '#/components/schemas/FeeAsset'
          type: array
        chain_type:
          $ref: '#/components/schemas/ChainType'
          description: Type of chain, e.g. "cosmos" or "evm"
        ibc_capabilities:
          $ref: '#/components/schemas/IbcCapabilities'
          description: IBC capabilities of the chain
        is_testnet:
          description: Whether the chain is a testnet
          type: boolean
        pretty_name:
          description: User friendly name of the chain
          type: string
    CosmosModuleSupport:
      properties:
        authz:
          description: Whether the authz module is supported
          type: boolean
        feegrant:
          description: Whether the feegrant module is supported
          type: boolean
    FeeAsset:
      description: >-
        Asset used to pay gas fees and the recommended price tiers. Assets and
        gas price recommendations are sourced from the [keplr chain
        registry](https://github.com/chainapsis/keplr-chain-registry)
      required:
        - denom
      properties:
        denom:
          description: Asset denom
          type: string
        gas_price:
          description: Gas price tiers
          nullable: true
          properties:
            average:
              description: Average gas price
              type: string
            high:
              description: High gas price
              type: string
            low:
              description: Low gas price
              type: string
          type: object
      type: object
    ChainType:
      type: string
      enum:
        - cosmos
        - evm
        - svm
    IbcCapabilities:
      properties:
        cosmos_pfm:
          description: Whether the packet forwarding middleware module is supported
          type: boolean
        cosmos_ibc_hooks:
          description: Whether the ibc hooks module is supported
          type: boolean
        cosmos_memo:
          description: Whether the chain supports IBC memos
          type: boolean
        cosmos_autopilot:
          description: Whether the autopilot module is supported
          type: boolean

````