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.aiAuthentication
To authenticate with the Examplary API, you need to include a credential in the Authorization header of each request — typically your personal API key, obtained from your Examplary account settings.
API keys are always scoped to a specific user and workspace.
Authorization: Bearer YOUR_API_KEYIf you're building a third-party integration, you can also authenticate on behalf of your users with an OAuth access token instead of an API key — see Sign in with Examplary. It's used the same way, as a Bearer token in the Authorization header.
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"
}