Call API
Authentication
Learn how to authenticate with the Pluslide API using API keys.
All Pluslide API requests require authentication using API keys.
API Key Authentication
Include your API key in the Authorization header using the Bearer scheme:
Example Request
curl -X POST "https://api.pluslide.com/v1/project/export" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"projectId": "proj_123", "presentation": {...}}'Creating API Keys
- Log in to your Pluslide account
- Navigate to API Tokens
- Click "Add Token"
- Enter a descriptive name
- Copy and securely store the generated key
Important: The API key is only displayed once at creation. Store it securely.
