Quick Start
The Rareful API is a complete toolkit to power rich NFT experiences inside apps and games
Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include a valid API key in the header will not be authorized.
Login at api.rareful.io and go to the profile tab to get your api key.
Make your first request
To make your first request, send an authenticated request to the testConnection endpoint. This will check to see if you're connected and ready to dive in to more documentation.
Test your API connection
POST https://api.rareful.io/v1/testConnection
Tests your API_KEY to see if you are connected. Remember that post requests with no parameters still need an empty body like this: {}
{
"data": {
"Authenticated": True
},
"status": 200,
"message": "Congrats you're Authenticated and ready to make requests!"
}{
"data": {},
"status": 400,
"message": "There was an error"
}{
"data": {},
"status": 401,
"message": "Not Authorized"
}Take a look at how you might call this method using different languages and request packages:
Last updated
