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

# GET /metadata

> Retrieves metadata describing the dataset, including its name, aliases, start block, and real-time status.



## OpenAPI

````yaml /api-reference/openapi.yaml get /metadata
openapi: 3.1.0
info:
  title: SQD Network Portal API - Dataset Endpoints
  description: >-
    API endpoints for interacting with datasets under the SQD Network Portal,
    specifically for the solana-mainnet dataset.
  version: 1.0.0
servers:
  - url: https://portal.sqd.dev/datasets/solana-mainnet
security: []
paths:
  /metadata:
    get:
      description: >-
        Retrieves metadata describing the dataset, including its name, aliases,
        start block, and real-time status.
      responses:
        '200':
          description: Dataset metadata response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatasetMetadata'
components:
  schemas:
    DatasetMetadata:
      type: object
      properties:
        dataset:
          type: string
          description: The default name used to reference this dataset
        aliases:
          type: array
          items:
            type: string
          description: Alternative names for the dataset
        real_time:
          type: boolean
          description: Indicates if the dataset has real-time data
        start_block:
          type: integer
          format: int64
          description: The slot number of the first known block
      required:
        - dataset
        - aliases
        - real_time

````