Get runs
GET
/batch-runs/{batchId}/runs
const url = 'https://api.testzilla.ai/v1/batch-runs/example/runs';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/batch-runs/example/runs \ --header 'x-api-key: <x-api-key>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” batchId
required
string
BatchId identifier
Responses
Section titled “ Responses ”Success
Media type application/json
object
Example generated
{}Unauthorized (missing/invalid API key or token)
Not found