> ## 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 Dogecoin blockchain general information including network stats, block height, difficulty, and node status.

# Blockchain Info



## OpenAPI

````yaml dogecoin/node-rpc-api/openapi.json get /general/info
openapi: 3.1.0
info:
  description: Node RPC API for Dogecoin.
  title: Dogecoin - Node RPC API
  version: '0.1'
servers:
  - description: Dogecoin Mainnet
    url: https://xdg-mainnet.gomaestro-api.org/v0/rpc
  - description: Dogecoin Testnet
    url: https://xdg-testnet.gomaestro-api.org/v0/rpc
security:
  - api-key: []
externalDocs:
  description: ''
  url: ''
paths:
  /general/info:
    get:
      tags:
        - General
      summary: Blockchain Info
      description: Blockchain info
      operationId: rpc_chain_info
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_dogecoin.BlockchainInfoResponseBody'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_dogecoin.NodeRPCError'
          description: Node RPC error.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_dogecoin.APIError'
          description: Error getting blockchain info.
components:
  schemas:
    api_dogecoin.BlockchainInfoResponseBody:
      properties:
        data:
          $ref: '#/components/schemas/api_dogecoin.BlockchainInfo'
        last_updated:
          $ref: '#/components/schemas/api_dogecoin.LastUpdatedBlock'
      type: object
    api_dogecoin.NodeRPCError:
      properties:
        code:
          description: Error code returned from the API request
          example: 0
          type: integer
        node rpc error:
          description: Error returned from the API request
          example: node rpc error
          type: string
      type: object
    api_dogecoin.APIError:
      properties:
        error:
          description: Error returned from the API request
          example: Bad Request
          type: string
      type: object
    api_dogecoin.BlockchainInfo:
      properties:
        bestblockhash:
          type: string
        bip9_softforks:
          properties:
            csv:
              properties:
                since:
                  type: integer
                startTime:
                  type: integer
                status:
                  type: string
                timeout:
                  type: integer
              type: object
          type: object
        blocks:
          type: integer
        chain:
          type: string
        chainwork:
          type: string
        difficulty:
          type: number
        headers:
          type: integer
        initialblockdownload:
          type: boolean
        mediantime:
          type: integer
        pruned:
          type: boolean
        size_on_disk:
          type: integer
        softforks:
          items:
            properties:
              id:
                type: string
              reject:
                properties:
                  status:
                    type: boolean
                type: object
              version:
                type: integer
            type: object
          type: array
          uniqueItems: false
        verificationprogress:
          type: number
        warnings:
          type: string
      type: object
    api_dogecoin.LastUpdatedBlock:
      properties:
        block_hash:
          type: string
        block_height:
          type: integer
      type: object
  securitySchemes:
    api-key:
      description: Project API Key
      in: header
      name: api-key
      type: apiKey

````