cURL
curl --request GET \ --url https://api.honeyhive.ai/runs/{run_id}/result \ --header 'Authorization: Bearer <token>'
{ "status": "<string>", "success": true, "passed": [ "<string>" ], "failed": [ "<string>" ], "metrics": { "aggregation_function": "<string>", "details": [ { "metric_name": "<string>", "metric_type": "<string>", "event_name": "<string>", "event_type": "<string>", "aggregate": 123, "values": [ 123 ], "datapoints": { "passed": [ "<string>" ], "failed": [ "<string>" ] } } ] }, "datapoints": [ { "datapoint_id": "<string>", "session_id": "<string>", "passed": true, "metrics": [ { "name": "<string>", "event_name": "<string>", "event_type": "<string>", "value": 123, "passed": true } ] } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
average
min
max
median
p95
p99
p90
sum
count
Experiment result retrieved successfully
The response is of type object.
object
Was this page helpful?