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

# Account Balance Latest

> Retrieves the current account balance for the specified address.



## OpenAPI

````yaml get /addresses/{hash}/account-balances/latest
openapi: 3.1.0
info:
  title: blockchain-api
  version: '2'
servers:
  - url: https://api.amberdata.com/blockchains
security:
  - sec0: []
paths:
  /addresses/{hash}/account-balances/latest:
    get:
      summary: Account Balance Latest
      description: Retrieves the current account balance for the specified address.
      operationId: get-current-account-balance
      parameters:
        - name: hash
          in: path
          description: address to retrieve the account balance for
          schema:
            type: string
            default: '0x06012c8cf97bead5deae237070f9587f8e7a266d'
          required: true
        - name: x-amberdata-blockchain-id
          in: header
          description: The id of the blockchain
          schema:
            type: string
            enum:
              - bitcoin-mainnet
              - bitcoin-abc-mainnet
              - ethereum-mainnet
              - litecoin-mainnet
              - polygon-mainnet
            default: ethereum-mainnet
        - name: includePrice
          in: query
          description: >-
            Indicates whether or not to include price data with the results.
            Options: true, false.
          schema:
            type: boolean
        - name: currency
          in: query
          description: >-
            The currency of the price information. Options: usd, btc. Only used
            in conjunction with includePrice.
          schema:
            type: string
        - name: realTime
          in: query
          description: >-
            **[Optional]** Indicates whether or not to pull data from blockchain
            via RCP call. Options: true, false <BR/> **[Defaults]** `false`
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                    default: 0
                  title:
                    type: string
                    example: OK
                  description:
                    type: string
                    example: Successful request
                  payload:
                    type: object
                    properties:
                      address:
                        type: object
                        properties:
                          address:
                            type: string
                            example: '0x06012c8cf97bead5deae237070f9587f8e7a266d'
                      blockchainId:
                        type: string
                        example: 1c9c969065fcd1cf
                      blockNumber:
                        type: string
                        example: '7817499'
                      timestamp:
                        type: integer
                        example: 1558635166000
                        default: 0
                      timestampNanoseconds:
                        type: integer
                        example: 0
                        default: 0
                      value:
                        type: string
                        example: '59717752721124107170'
        '401':
          description: '401'
          content:
            text/plain:
              examples:
                Result:
                  value: Unauthorized
        '404':
          description: '404'
          content:
            text/plain:
              examples:
                Address Not Found:
                  value: Unknown address or address is not a contract
      deprecated: false
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````