Getting Started with Quizell APIs
Learn how to unlock advanced features in Quizell and get the most out of your quizzes, forms, and funnels.
Access Requirements
To explore advanced features like AI recommendations, conditional logic, and multi‑step funnels, make sure your account is on the Pro plan.
How to Use the Quizell API
You can programmatically access your quizzes, products, and customer data through the Quizell REST API. Authenticate with your API token and use standard HTTP requests.
JSON
1
2
3
curl -X GET https://api.quizell.com/api/v1 \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
- GET /products → Fetch all products.
- POST /products → Create a new product.
- PUT /products/:id → Update an existing product.
- DELETE /products/:id → Delete a product.
- GET /customers → Fetch all customers.
See the full API reference for all endpoints and advanced usage.
Using the Quizell API
Quizell provides a REST API for managing quizzes, customers, responses, and integrations. All requests must be made over HTTPS with a bearer token.
Base URL: https://api.quizell.com/api/v1
Auth: Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Quick Test (cURL)
curl -X GET -H "Authorization: Bearer YOUR_API_KEY" https://api.quizell.com/api/v1
Errors & Rate Limits
401 Unauthorized
– invalid/expired API key.403 Forbidden
– plan doesn’t include this feature.422 Unprocessable Entity
– validation errors (check field messages).429 Too Many Requests
– back off and retry with exponential delay.
Frequently Asked Questions
Next Steps
- Connect your store and CRM integrations.
- Enable AI recommendations and map products to answers.
- Track performance in Analytics and iterate on questions.