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

> Get metadata information for a specific Cardano stake pool including name, description, and website details.

# Stake pool metadata



## OpenAPI

````yaml cardano/blockchain-indexer-api/openapi.json get /pools/{pool_id}/metadata
openapi: 3.0.3
info:
  title: Cardano - Blockchain Indexer API
  description: Core indexer endpoints dedicated to Cardano.
  contact:
    name: Maestro Blockchain Inc.
    url: https://gomaestro.org/
    email: info@gomaestro.org
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.txt
  version: v1.8.0
servers:
  - url: https://mainnet.gomaestro-api.org/v1
    description: Cardano Mainnet
  - url: https://preprod.gomaestro-api.org/v1
    description: Cardano Preprod
  - url: https://preview.gomaestro-api.org/v1
    description: Cardano Preview
security:
  - api-key: []
tags:
  - name: Maestro
paths:
  /pools/{pool_id}/metadata:
    get:
      tags:
        - Pools
      summary: Stake pool metadata
      description: Returns the metadata declared on-chain by the specified stake pool
      operationId: pool_metadata
      parameters:
        - name: pool_id
          in: path
          description: Pool ID in bech32 format
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Various metadata for the specified pool
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimestampedPoolMetadata'
              example:
                data:
                  pool_id_bech32: pool10qrz84cvz95zg8saf43ruhs5ulczuuqm2d3jn6d8xkkkzgzfje7
                  meta_url: https://adappt.online/pool_metadata.json
                  meta_hash: >-
                    be9033a437ba8e8c9ad7e072e71b1afca66ab18225d39d5e9de3d38e1e088f8d
                  meta_json:
                    name: Adappt Online
                    ticker: ADAPT
                    homepage: https://adappt.online
                    description: >-
                      Adappt Online pool supports Cardano and the concept of
                      DApps. On-premise servers with 24/7 monitoring.
                last_updated:
                  timestamp: '2022-10-10 20:25:28'
                  block_hash: >-
                    d881a61a3573d2fdd0098b9506da74b36f23d67e797f55419dd7eb96a8b327fc
                  block_slot: 96405212
        '404':
          description: No results found
        '500':
          description: Internal server error
components:
  schemas:
    TimestampedPoolMetadata:
      type: object
      description: >-
        Timestamped response. Returns the endpoint response data along with the
        chain-tip of the indexer, which details at which point in the chain's
        history the data was correct as-of.
      required:
        - data
        - last_updated
      properties:
        data:
          $ref: '#/components/schemas/PoolMetadata'
        last_updated:
          $ref: '#/components/schemas/LastUpdated'
    PoolMetadata:
      type: object
      description: Metadata associated with a stake pool
      required:
        - pool_id_bech32
      properties:
        meta_hash:
          type: string
          description: Hash of the pool metadata
          nullable: true
        meta_json:
          allOf:
            - $ref: '#/components/schemas/PoolMetaJson'
          nullable: true
        meta_url:
          type: string
          description: URL pointing to the pool metadata
          nullable: true
        pool_id_bech32:
          type: string
          description: Bech32 encoded pool ID
    LastUpdated:
      type: object
      description: >-
        Details of the most recent block processed by the indexer (aka chain
        tip); that is, the data returned is correct as of this block in time.
      required:
        - timestamp
        - block_hash
        - block_slot
      properties:
        block_hash:
          type: string
          description: >-
            Hex-encoded hash of the most recently processed block (aka chain
            tip)
        block_slot:
          type: integer
          format: int64
          description: Absolute slot of the most recently processed block (aka chain tip)
          minimum: 0
        timestamp:
          type: string
          description: UTC timestamp of when the most recently processed block was minted
    PoolMetaJson:
      type: object
      description: JSON metadata associated with a stake pool
      required:
        - name
      properties:
        description:
          type: string
          description: Pool description
          nullable: true
        homepage:
          type: string
          description: Pool home page URL
          nullable: true
        name:
          type: string
          description: Pool name
        ticker:
          type: string
          description: Pool ticker symbol
          nullable: true
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: api-key
      description: Project API Key

````