Documentation Index
Fetch the complete documentation index at: https://docs.drime.cloud/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Drime Cloud API uses Bearer Token authentication. Every API request must include your access token in theAuthorization header.
Obtaining an Access Token
Method 1: Dashboard (Recommended)
The easiest way to get a token is from the Drime Cloud dashboard:- Log in to Drime Cloud
- Go to Account Settings → Developers
- Click Create a token
- Name your token and click Create
- Copy your token and store it securely
Method 2: Login Endpoint
You can also obtain a token programmatically using the login endpoint:Response
Using the Token
Include the token in every API request:Error Responses
401 Unauthorized
If the token is missing or invalid:403 Forbidden
If you don’t have permission to access a resource:Best Practices
Environment Variables
Store your token in environment variables, not in code
Rotate Tokens
Regularly rotate your API tokens for security
Minimal Scope
Use separate tokens for different applications
HTTPS Only
Always use HTTPS for API requests
Example: Setting Up Environment Variables
- Linux/macOS
- Windows (PowerShell)
- .env File

