REST API Overview
413 Views
Authentication
All API requests must be authenticated using a Bearer token. Include the token in the Authorization header:
Authorization: Bearer your-api-token
Base URL
All API endpoints are prefixed with /api/v1/.
Available Endpoints
GET /api/v1/products- List all productsGET /api/v1/licenses- List all licensesPOST /api/v1/licenses/verify- Verify a licensePOST /api/v1/licenses/activate- Activate a license
Rate Limiting
API requests are limited to 60 requests per minute per API key. If you exceed this limit, you'll receive a 429 Too Many Requests response.