Getting Started
Last updated
Last updated
By default, certain routes are available publicly in a rate limited manner with no API key. However, API keys allow you access to all routes with higher limits.
Sign in on and create an API key by going to https://bitbadges.io/developer -> API Keys tab.
Start sending requests to the base URL of https://api.bitbadges.io/ with the HTTP header x-api-key. All routes require an API key.
For higher tiers / paid plans, visit https://bitbadges.io/pricing. To actually upgrade, see the Upgrading an API Key Tier demo on the next page.
See the quickstart repo for a fully configured example repository with fetching collections, accounts, and more with the API!
Note: Numbers are stringified in responses to avoid precision loss. You will have to convert them. The SDK does this for you if you use it.
In this documentation, we often use the SDK format for explanation purposes. Please convert the corresponding function name to vanilla HTTP if you are not using the SDK from the documentation above.
A testnet version of the API is available with the base URL https://api.bitbadges.io/testnet. Everything else is the same, just add the /testnet before all paths.
Note that this testnet API is an entirely separate service from normal API. Nothing carries over. It commmunicates with the frontend with testnet mode turned on and uses the testnet BitBadges blockchain.
If you are using JavaScript / TypeScript, consider using the typed API SDK for convenience. This will give you typed routes, provide quality checks, and also auto-convert all responses to your desired number type (bigint, Number, etc).
Note we also have a python auto-generated SDK wrapper for the API without any of the helper functions like the JS SDK has at https://pypi.org/project/bitbadgespy-sdk/
Check out the BitBadges JS/SDK for implementing further functionality beyond just API requests / responses, such as manipulating balances, handling approvals, checking permissions, etc.
For most applications, you should be fine without needing to access private user authenticated information. However if you do, check out Sign In with BitBadges. This follows a standard OAuth 2.0 flow. Use the scopes to gain access to authenticated routes. Refer to the API reference to see what scopes are needed where.
Throughout the API, we use a bookmark technique. For the first request, you will not need to specify a bookmark (e.g. ""), and it will fetch the first page. Within the response, it will return a bookmark and hasMore. hasMore defines whether there are more pages to be fetched. To fetch the next page, you will specify the returned bookmark from the previous request to the next request. This process can be repeated until all are loaded.