Examplary REST API
Integrate with the Examplary AI testing platform through the REST API, allowing you to manage exams, questions, results and users programmatically.
Base URL
All endpoints are available through the HTTP API at:
https://api.examplary.ai
Authentication
To authenticate with the Examplary API, you need to include your API key in the Authorization
header of each request.
The API key can be obtained from your Examplary account settings.
API keys are always scoped to a specific user and workspace.
Authorization: Bearer YOUR_API_KEY
Payloads
All request bodies and response payloads are JSON-encoded.
Example request
PATCH https://api.examplary.ai/me
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY
{
"name": "My new name"
}