Download HAR file for a specific attempt
GET
/api/v1/requests/{id}/runs/{runId}/har
const url = 'https://example.com/api/v1/requests/example/runs/example/har';const options = {method: 'GET'};
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://example.com/api/v1/requests/example/runs/example/harParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
runId
required
string
Responses
Section titled “ Responses ”HAR-format JSON file
Not found