> ## Documentation Index
> Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt
> Use this file to discover all available pages before exploring further.

# Get chain info

> This operation retrieves configuration details for a specific chain by its Cobo chain ID (for example, `ETH`, `BASE_ETH`, `SOL`). Returns the chain identifier, RPC URL, and other chain-level metadata stored locally. Obtain the full list of supported chain IDs by calling the List supported chains operation (`GET /metadata/chains`).



## OpenAPI

````yaml get /api/v1/metadata/chains/{chain_id}/info
openapi: 3.1.0
info:
  title: Cobo Agentic Wallet Service
  description: Unified wallet engine for human and agent principals
  version: 1.3.0
servers: []
security: []
paths:
  /api/v1/metadata/chains/{chain_id}/info:
    get:
      tags:
        - Metadata
      summary: Get chain info
      description: >-
        This operation retrieves configuration details for a specific chain by
        its Cobo chain ID (for example, `ETH`, `BASE_ETH`, `SOL`). Returns the
        chain identifier, RPC URL, and other chain-level metadata stored
        locally. Obtain the full list of supported chain IDs by calling the List
        supported chains operation (`GET /metadata/chains`).
      operationId: get_chain_info_by_chain_id
      parameters:
        - name: chain_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              The Cobo chain ID to look up (for example, `ETH`, `BASE_ETH`,
              `SOL`). Obtain supported chain IDs by calling the List supported
              chains operation (`GET /metadata/chains`).
            title: Chain Id
          description: >-
            The Cobo chain ID to look up (for example, `ETH`, `BASE_ETH`,
            `SOL`). Obtain supported chain IDs by calling the List supported
            chains operation (`GET /metadata/chains`).
        - name: X-API-Key
          in: header
          required: false
          schema:
            title: X-Api-Key
            type: string
            nullable: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse_ChainInfo_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WrappedValidationError'
components:
  schemas:
    StandardResponse_ChainInfo_:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        result:
          $ref: '#/components/schemas/ChainInfo'
        suggestion:
          type: string
          title: Suggestion
          default: ''
        message:
          type: string
          title: Message
          default: ''
        meta:
          $ref: '#/components/schemas/PaginationMeta'
          nullable: true
      type: object
      required:
        - result
      title: StandardResponse[ChainInfo]
    WrappedValidationError:
      title: WrappedValidationError
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          const: false
          default: false
          title: Success
        error:
          type: object
          title: Error
          required:
            - detail
          properties:
            detail:
              type: array
              title: Detail
              items:
                $ref: '#/components/schemas/ValidationError'
    ChainInfo:
      properties:
        unique_chain_id:
          type: string
          title: Unique Chain Id
        name:
          type: string
          title: Name
        chain_coin:
          type: string
          title: Chain Coin
        icon_url:
          title: Icon Url
          type: string
          nullable: true
        confirming_threshold:
          type: integer
          title: Confirming Threshold
          default: 0
        chain_type:
          type: string
          title: Chain Type
          description: >-
            The address standard shared across chains — chains with the same
            chain_type share one wallet address. E.g. ETH, BASE, ARB, OP, BSC,
            MATIC, AVAXC, and SETH are all chain_type: ETH, so they all use the
            same 0x... address.
          default: ''
        explorer_tx_url:
          title: Explorer Tx Url
          default: ''
          type: string
          nullable: true
        explorer_address_url:
          title: Explorer Address Url
          default: ''
          type: string
          nullable: true
        supported_fee_models:
          title: Supported Fee Models
          default: ''
          type: string
          nullable: true
        supported_address_encodings:
          title: Supported Address Encodings
          default: ''
          type: string
          nullable: true
        supported_address_encodings_by_ksr:
          title: Supported Address Encodings By Ksr
          default: ''
          type: string
          nullable: true
        enable_smart_contract_op:
          type: boolean
          title: Enable Smart Contract Op
          default: false
        is_nonce_mandatory:
          type: boolean
          title: Is Nonce Mandatory
          default: false
        is_case_sensitive:
          type: boolean
          title: Is Case Sensitive
          default: false
        is_testnet:
          type: boolean
          title: Is Testnet
          default: false
        use_memo_to_deposit:
          type: boolean
          title: Use Memo To Deposit
          default: false
        use_memo_to_withdraw:
          type: boolean
          title: Use Memo To Withdraw
          default: false
        coinbase_maturity:
          type: integer
          title: Coinbase Maturity
          default: 0
        input_utxo_limit:
          type: integer
          title: Input Utxo Limit
          default: 0
        caip2_chain_id:
          title: Caip2 Chain Id
          default: ''
          type: string
          nullable: true
      type: object
      required:
        - unique_chain_id
        - name
        - chain_coin
      title: ChainInfo
      description: >-
        Single chain info from get_chains_by_chain_coins.


        All optional fields use ``str | None`` because the upstream Blockchain
        API

        may return ``null`` for any non-essential attribute.
    PaginationMeta:
      properties:
        total:
          title: Total
          type: integer
          nullable: true
        offset:
          title: Offset
          type: integer
          nullable: true
        limit:
          title: Limit
          type: integer
          nullable: true
        has_more:
          title: Has More
          type: boolean
          nullable: true
        after:
          title: After
          type: string
          nullable: true
        before:
          title: Before
          type: string
          nullable: true
      type: object
      title: PaginationMeta
      description: |-
        Pagination metadata for list responses.

        Supports both legacy offset-based and cursor-based pagination.
        Cursor fields (``has_more``, ``after``, ``before``) are populated for
        cursor-paginated endpoints.  Legacy fields (``offset``, ``limit``) are
        populated when the caller uses the deprecated ``offset`` parameter.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````