Introduction to the TalentScreen REST API and getting started guide.
The TalentScreen API provides programmatic access to all platform features. Our RESTful API uses standard HTTP methods, returns JSON responses, and follows industry best practices for authentication and error handling.
https://talentscreens.org/api/v1The current API version is v1. All endpoints are prefixed with /api/v1. We maintain backward compatibility and provide advance notice before deprecating any endpoints.
All requests should include Content-Type: application/json header. Responses are always returned as JSON with appropriate HTTP status codes.
API access requires authentication. See the Authentication article for details on obtaining and using API tokens.
Make your first API call by listing available exams. Replace YOUR_API_TOKEN with your actual token from the dashboard.
curl -X GET https://talentscreens.org/api/v1/exams \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"Was this article helpful?