List test results
GET
/test-results
const url = 'https://api.testzilla.ai/v1/test-results';const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.testzilla.ai/v1/test-results \ --header 'x-api-key: <x-api-key>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Success
Media type application/json
object
Example generated
{}Unauthorized (missing/invalid API key or token)
Not found