Skip to content

Add RPC provider example #1296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: staging
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/rest-apis/restendpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,12 @@ curl http://$(cat ~/node/data/algod.net)/v2/blocks/16486179 -H "X-Algo-API-Token
```

In the above example, the block information will be displayed if the block exists on the local node. If the node is a non-Archival node, blocks older than 1000 blocks will not be available.

# RPC Providers

[Chain.Love](https://chain.love) provides freemium access to the RPC endpoints of the Algorand network with 10 requests per minute available anonymously and free of charge.

Here is a quickstart example on how to get information of the block using Chain.Love endpoints:
* ```shell
curl --location 'https://algod.algorand.chain.love/v2/blocks/1?format=json'
```