Testery REST API

The Testery API is a REST API.

Authenticate with the Testery REST API

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/?offset=0&limit=10"

Once you've confirmed you can authenticate and make a request, check out all the things you can do with API End Points.

Last updated