GET
https://app.loadforge.com/api/v2
/
result
/
{id}
curl --request GET \
  --url https://app.loadforge.com/api/v2/result/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "run_status": 123,
  "cancelled": true,
  "duration": 123,
  "requests": "<string>",
  "failures": "<string>",
  "response_median": "<string>",
  "response_avg": "<string>",
  "response_min": "<string>",
  "response_max": "<string>",
  "reqs_per_second": "<string>",
  "fails_per_second": "<string>",
  "results_csv_stats": "<string>",
  "results_csv_history": "<string>",
  "results_csv_failures": "<string>"
}

Returns the full data for a single Result set. This endpoint provides detailed information about a specific test run result, including CSV statistics, history, and failures data.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

ID of result to retrieve

Response

200
application/json

Full result data response

The response is of type object.