Get Started
Authentication
Get Started
Authentication
Authenticate your requests to Levanta with an API key
Visit app.levanta.io to create a Levanta account.
Navigate to Settings > API and click “Generate API Key”. This will generate a new API key that you can use to authenticate your requests.
To authenticate your requests, include the Authorization
header with the value Bearer <api_key>
.
For example:
const headers = {
Authorization: 'Bearer <api_key>'
};
await fetch('https://app.levanta.io/api/<creator|seller>/<endpoint>', {
method: '...',
headers
})