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

# DenomMetadata

> gRPC: `cosmos.bank.v1beta1.Query/DenomMetadata` ([reference](/sdk/latest/api-reference/grpc/bank#denommetadata))

DenomMetadata queries the client metadata of a given coin denomination.



## OpenAPI

````yaml /sdk/latest/api-reference/rest/openapi.yaml get /cosmos/bank/v1beta1/denoms_metadata/{denom}
openapi: 3.0.0
info:
  title: Cosmos SDK REST API
  description: >-
    HTTP bindings for the gRPC query services of the standard Cosmos SDK
    modules, documenting Cosmos SDK v0.55.


    Generated from cosmos/cosmos-sdk at commit
    2086680ff8b08fd269ee653e087ea577bab79534 on ref `release/v0.55.x`.


    A chain exposes only the modules its application registers, so it may serve
    a subset of these routes alongside routes of its own.
  version: v0.55
servers:
  - url: https://cosmos-rest.publicnode.com
    description: >-
      Community-run public endpoint serving Cosmos Hub. Not operated by the
      Cosmos SDK team, and running a different SDK version than these pages
      document. Endpoints for modules the chain does not include return 501.
  - url: http://localhost:1317
    description: Your own node. Requires api.enable in app.toml.
security: []
tags:
  - name: auth
  - name: authz
  - name: bank
  - name: base
  - name: consensus
  - name: distribution
  - name: epochs
  - name: evidence
  - name: feegrant
  - name: gov
  - name: mint
  - name: slashing
  - name: staking
  - name: tx
  - name: upgrade
paths:
  /cosmos/bank/v1beta1/denoms_metadata/{denom}:
    get:
      tags:
        - bank
      summary: DenomMetadata
      description: >-
        gRPC: `cosmos.bank.v1beta1.Query/DenomMetadata`
        ([reference](/sdk/latest/api-reference/grpc/bank#denommetadata))


        DenomMetadata queries the client metadata of a given coin denomination.
      operationId: bank_v1beta1_DenomMetadata
      parameters:
        - name: denom
          description: denom is the coin denom to query the metadata for.
          in: path
          required: true
          schema:
            type: string
            pattern: .+
      responses:
        '200':
          description: A successful response.
          content:
            '*/*':
              schema:
                type: object
                properties:
                  metadata:
                    description: >-
                      metadata describes and provides all the client information
                      for the requested token.
                    type: object
                    properties:
                      description:
                        type: string
                      denom_units:
                        type: array
                        items:
                          type: object
                          properties:
                            denom:
                              type: string
                              description: >-
                                denom represents the string name of the given
                                denom unit (e.g uatom).
                            exponent:
                              type: integer
                              format: int64
                              description: >-
                                exponent represents power of 10 exponent that
                                one must

                                raise the base_denom to in order to equal the
                                given DenomUnit's denom

                                1 denom = 10^exponent base_denom

                                (e.g. with a base_denom of uatom, one can create
                                a DenomUnit of 'atom' with

                                exponent = 6, thus: 1 atom = 10^6 uatom).
                            aliases:
                              type: array
                              items:
                                type: string
                              title: >-
                                aliases is a list of string aliases for the
                                given denom
                          description: |-
                            DenomUnit represents a struct that describes a given
                            denomination unit of the basic token.
                          additionalProperties: false
                        title: >-
                          denom_units represents the list of DenomUnit's for a
                          given coin
                        nullable: true
                      base:
                        type: string
                        description: >-
                          base represents the base denom (should be the
                          DenomUnit with exponent = 0).
                      display:
                        type: string
                        description: |-
                          display indicates the suggested denom that should be
                          displayed in clients.
                      name:
                        type: string
                        title: 'name defines the name of the token (eg: Cosmos Atom)'
                      symbol:
                        type: string
                        description: >-
                          symbol is the token symbol usually shown on exchanges
                          (eg: ATOM). This can

                          be the same as the display.
                      uri:
                        type: string
                        description: >-
                          URI to a document (on or off-chain) that contains
                          additional information. Optional.
                      uri_hash:
                        type: string
                        description: >-
                          URIHash is a sha256 hash of a document pointed by URI.
                          It's used to verify that

                          the document didn't change. Optional.
                    nullable: true
                    additionalProperties: false
                description: >-
                  QueryDenomMetadataResponse is the response type for the
                  Query/DenomMetadata RPC

                  method.
                additionalProperties: false
        default:
          description: An unexpected error response.
          content:
            '*/*':
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    format: int32
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      type: object
                      properties:
                        '@type':
                          type: string
                      additionalProperties: {}

````