> ## 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 comprehensive information about a Cardano stake account including delegation status and rewards.

# Stake account information



## OpenAPI

````yaml cardano/blockchain-indexer-api/openapi.json get /accounts/{stake_addr}
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:
  /accounts/{stake_addr}:
    get:
      tags:
        - Accounts
      summary: Stake account information
      description: Returns various information regarding a stake account
      operationId: account_info
      parameters:
        - name: stake_addr
          in: path
          description: Bech32 encoded reward/stake address ('stake1...')
          required: true
          schema:
            type: string
        - name: amounts-as-strings
          in: header
          description: Large numbers returned as strings if set to `true`
          required: false
          schema:
            type: string
            nullable: true
      responses:
        '200':
          description: Information about the account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimestampedAccountInfo'
              example:
                data:
                  stake_address: >-
                    stake_test1uzq7mcr5mmj2jeqqf5eaxxd4sdzvszqnd26vnz5nvn0mcaqte3ycr
                  registered: true
                  delegated_pool: pool1egfg26w0syqly9qc65hz33gqv2qrzyka8tfue3ccsk3c73a56jp
                  delegated_drep: drep1ydvwp8x9j8u4flwjqwxf8jdjwp9p4zf2x4rk7vv7fgzk6j2k7c6
                  rewards_available: 24648659341
                  utxo_balance: 249497357989
                  total_balance: 274146017330
                  total_rewarded: 24648659341
                  total_withdrawn: 0
                last_updated:
                  timestamp: '2022-10-10 20:25:28'
                  block_hash: >-
                    d99c239b6fae8036b3057b6837a563d045ce2a393e17d789d1e85c51bee898fc
                  block_slot: 32265099
        '404':
          description: No results found
        '500':
          description: Internal server error
components:
  schemas:
    TimestampedAccountInfo:
      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/AccountInfo'
        last_updated:
          $ref: '#/components/schemas/LastUpdated'
    AccountInfo:
      type: object
      description: Summary of information regarding a stake account
      required:
        - stake_address
        - registered
        - rewards_available
        - utxo_balance
        - total_balance
        - total_rewarded
        - total_withdrawn
      properties:
        delegated_drep:
          type: string
          description: Bech32 DRep ID that the stake key is delegated to
          nullable: true
        delegated_pool:
          type: string
          description: Bech32 pool ID that the stake key is delegated to
          nullable: true
        registered:
          type: boolean
          description: True if the stake key is registered
        rewards_available:
          $ref: '#/components/schemas/NumOrString'
        stake_address:
          type: string
          description: Bech32 encoded stake address
        total_balance:
          $ref: '#/components/schemas/NumOrString'
        total_rewarded:
          $ref: '#/components/schemas/NumOrString'
        total_withdrawn:
          $ref: '#/components/schemas/NumOrString'
        utxo_balance:
          $ref: '#/components/schemas/NumOrString'
    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
    NumOrString:
      oneOf:
        - type: integer
          format: int64
          description: Unsigned 64-bit integer
          minimum: 0
        - type: integer
          description: Unsigned 128-bit integer
          minimum: 0
        - type: integer
          format: int64
          description: Signed 64-bit integer
        - type: number
          format: double
          description: 64-bit floating point number
        - type: string
          description: String representation of an integer or number
      description: >-
        Integer or number by default, or a string representation if the
        `amounts-as-strings` header is set to `true`
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: api-key
      description: Project API Key

````