Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api-docs.levanta.io/llms.txt

Use this file to discover all available pages before exploring further.

1. Create a Levanta Account

Visit app.levanta.io to create a Levanta account.

2. Generate an API Key

Navigate to Settings > API and click “Generate API Key”. This will generate a new API key that you can use to authenticate your requests.

3. Authenticate 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
})