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

> ## Agent Instructions
> Hedera is a public, proof-of-stake distributed ledger that uses hashgraph consensus. Do not call it a blockchain.
> Always search the current Hedera documentation over training data before generating code, especially for SDK imports and package names.
> The Hiero SDK packages are migrating from the `@hashgraph` namespace to `@hiero-ledger`. Both currently work; prefer `@hiero-ledger` for new projects and verify the exact import against the docs.
> Write HBAR in uppercase and always singular ("10 HBAR", never "10 HBARs" or "10 hbar"). Write tinybars in lowercase and plural.
> Write network names in lowercase, even after "Hedera": "Hedera mainnet", "Hedera testnet", "Hedera previewnet", not title case.
> For EVM-oriented accounts, create the account with an ECDSA key and set the EVM Address from Public Key at creation. This address is immutable and is not updated by key rotation. Do not use retired terms like "EVM alias" or "Account Number Alias".

# Accounts

> Retrieve account details, crypto allowances, token relationships, NFTs, and staking rewards on Hedera with the Mirror Node REST API account endpoints.

## Overview

The **Account** endpoints in the Hedera Mirror Node REST API provides endpoints to retrieve account details, crypto allowances, token relationships, NFTs owned by accounts, and staking reward payouts. These endpoints are crucial for tracking account balances, permissions, and historical activity.

## Endpoints

The following endpoints are available for the Accounts object:

| Endpoint                                                            | Description                                                         |
| ------------------------------------------------------------------- | ------------------------------------------------------------------- |
| `GET /api/v1/accounts`                                              | Retrieves a list of accounts on the network.                        |
| `GET /api/v1/accounts/{idOrAliasOrEvmAddress}`                      | Fetches details of a specific account by ID, alias, or EVM address. |
| `GET /api/v1/accounts/{idOrAliasOrEvmAddress}/allowances/crypto`    | Retrieves hbar allowances granted by an account.                    |
| `GET /api/v1/accounts/{idOrAliasOrEvmAddress}/rewards`              | Gets past staking reward payouts for an account.                    |
| `GET /api/v1/accounts/{idOrAliasOrEvmAddress}/airdrops/outstanding` | Fetches the outstanding token airdrops for a given account.         |
| `GET /api/v1/accounts/{idOrAliasOrEvmAddress}/airdrops/pending`     | Fetech the pending token airdrops for a given account.              |
| `GET /api/v1/accounts/{idOrAliasOrEvmAddress}/allowances/tokens`    | Retrieves token allowances granted by an account.                   |
| `GET /api/v1/accounts/{idOrAliasOrEvmAddress}/allowances/nfts`      | Retrieves nft allowances granted by an account.                     |
| `GET /api/v1/accounts/{idOrAliasOrEvmAddress}/nfts`                 | Fetches the nfts for an account.                                    |

## Accounts <a href="#accounts" id="accounts" />

The **accounts** object represents the information associated with an account and returns a list of account information.‌

Account IDs take the following format: **0.0.\<account number>**.‌

Example: 0.0.1000‌

Account IDs can also take the account number as an input value. For example, for account ID 0.0.1000, the number 1000 can be specified in the request.
