---
updatedAt: 2026-05-13T16:18:48.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 via Algod API

**Step 1:** To access Algorand, use the following native access endpoint:

* **Network:** Algorand Mainnet
* **Request Type:** GET / POST / DELETE

```
https://svc.blockdaemon.com/algorand/mainnet/native
```

**Step 2:** Authenticate your request using your API key. You can include the API key using either of the following headers:

```curl Bearer Token
Authorization: Bearer YOUR_API_KEY
```

```curl X-API-Key
X-API-Key: YOUR_API_KEY
```

**Step 3:** Add an Algorand method at the end of the query:

> Learn more about Algorand RPC Methods [here](https://docs.blockdaemon.com/reference/algorand-rpc-methods).

```
https://svc.blockdaemon.com/algorand/mainnet/native/YOUR_METHOD
```

<br />

### Example Request

Here is a cURL example for using **[GET /v2/ledger/supply](https://developer.algorand.org/docs/rest-apis/algod/v2/#get-v2ledgersupply)** to get the current supply reported by the ledger in Algorand Mainnet:

```curl
curl -X GET \
https://svc.blockdaemon.com/algorand/mainnet/native/v2/ledger/supply \
-H 'Authorization: Bearer YOUR_API_KEY'
```

The following is a typical response you will get:

```json
{
    "current_round": 22988124,
    "online-money": 2388091813708583,
    "total-money": 7314443768632736
}
```

## 👋 Need Help?

Contact us through [email](mailto:support@blockdaemon.com) or our [support page](https://www.blockdaemon.com/support) for any issues, bugs, or assistance you may need.