Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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.

  • No labels