---
updatedAt: 2026-08-19T15:59:15.000Z
---

Fetch the complete documentation index at: https://docs.blockdaemon.com/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Algorand Indexer

> 📘
>
> See the [Algorand Indexer RPC API connection guide](https://docs.blockdaemon.com/docs/access-algorand-rpc-via-indexer-api).

### `indexer REST`

| Method                                               | Notes                                                                     | Compute Unit Value |
| ---------------------------------------------------- | ------------------------------------------------------------------------- | ------------------ |
| `GET /health`                                        | Returns an empty successful response when the Indexer service is healthy. | 1                  |
| `GET /v2/accounts`                                   | Searches indexed accounts using the supplied filters.                     | 10                 |
| `GET /v2/accounts/{account-id}`                      | Returns indexed account data for an account ID.                           | 10                 |
| `GET /v2/accounts/{account-id}/apps-local-state`     | Returns an account's indexed application local states.                    | 10                 |
| `GET /v2/accounts/{account-id}/assets`               | Returns an account's indexed asset holdings.                              | 10                 |
| `GET /v2/accounts/{account-id}/created-applications` | Returns applications created by an account.                               | 10                 |
| `GET /v2/accounts/{account-id}/created-assets`       | Returns assets created by an account.                                     | 10                 |
| `GET /v2/accounts/{account-id}/transactions`         | Returns indexed transactions associated with an account.                  | 10                 |
| `GET /v2/applications`                               | Searches indexed applications using the supplied filters.                 | 5                  |
| `GET /v2/applications/{application-id}`              | Returns an indexed application by ID.                                     | 5                  |
| `GET /v2/applications/{application-id}/logs`         | Returns logged application calls for an application.                      | 5                  |
| `GET /v2/assets`                                     | Searches indexed assets using the supplied filters.                       | 50                 |
| `GET /v2/assets/{asset-id}`                          | Returns an indexed asset by ID.                                           | 5                  |
| `GET /v2/assets/{asset-id}/balances`                 | Returns indexed account balances for an asset.                            | 5                  |
| `GET /v2/assets/{asset-id}/transactions`             | Returns indexed transactions involving an asset.                          | 5                  |
| `GET /v2/blocks/{round-number}`                      | Returns an indexed block by round number.                                 | 50                 |
| `GET /v2/transactions`                               | Searches indexed transactions using the supplied filters.                 | 10                 |
| `GET /v2/transactions/{txid}`                        | Returns an indexed transaction by transaction ID.                         | 5                  |