Authentication
The Testery API is a REST API that uses token-based authentication. To retrieve your token, click Settings → Integrations → Show API Token and copy the token that is displayed. Keep this token secure as it allows access to Testery on your behalf.
When making calls to the Testery API, pass your token in the authorization header. For example, to retrieve your list of recent test runs via curl,
curl -H 'Accept: application/json' -H 'Content-Type:application/json' \ -H 'Authorization: Bearer <yourApiToken>' \ "https://api.testery.io/api/test-runs/?page=0&limit=10"
Endpoints
Test Runs
GET https://api.testery.io/api/test-runs?page=##&limit=##
Returns the list of test runs.