Call API
Authentication
Learn how to authenticate with the Pluslide API using API keys. Includes setup instructions, security best practices, and code examples.
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.
Field Configuration Tips
Best practices for using Static and Required field properties in Pluslide. Learn when to mark fields as required and how to optimize template flexibility.
Generate Presentation
Generate presentations (PPTX, PDF, or Google Slides) using the Pluslide API. Supports both synchronous and asynchronous modes.
