Performance Testing › Retrieve a summary of performance testing results for a specific job.
Performance Testing
Retrieve a summary of performance testing results for a specific job. This API provides an overview of performance test results for a given job, including job ID, execution time, duration, request count, bandwidth, throughput, response times, ramp time, and user count. It helps assess the system's overall performance and scalability.
Retrieve a summary of performance testing results for a specific job. curl -- request GET \
-- url "https://api.hyperexecute.cloud/v1.0/performance/summary/{jobId}" \
-- header "Authorization: Basic <encoded-value>"
{
"type" : "summary" ,
"data" : {
"job_id" : "493bac0f-e412-445b-b85a-88df79f56de3" ,
"start_timestamp" : "2025-10-16T08:11:21.000000000Z" ,
"end_timestamp" : "2025-10-16T08:13:06.000000000Z" ,
"duration" : 105000 ,
"total_requests" : 669 ,
"total_errors" : 668 ,
"error_rate" : 99.85052316890882 ,
"avg_bandwidth" : 0 ,
"avg_throughput" : 9.416666666666666 ,
"min_response_time" : 0 ,
"max_response_time" : 6127 ,
"avg_response_time" : 570.9144927998836 ,
"avg_latency" : 570.9144927998836 ,
"ramp_time" : 0 ,
"users" : 1
}
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters jobId string required
Enter your HyperExecute JobID
Response 200▼
application/json Successful operation
type string required
Type of response data
data object required
▶ Hide child attributesdata. job_id string
Example: "493bac0f-e412-445b-b85a-88df79f56de3"
data. start_timestamp string
Example: "2025-10-16T08:11:21.000000000Z"
data. end_timestamp string
Example: "2025-10-16T08:13:06.000000000Z"
data. duration number
Example: 105000
data. total_requests number
Example: 669
data. total_errors number
Example: 668
data. error_rate number
Example: 99.85052316890882
data. avg_bandwidth number
Example: 0
data. avg_throughput number
Example: 9.416666666666666
data. min_response_time number
Example: 0
data. max_response_time number
Example: 6127
data. avg_response_time number
Example: 570.9144927998836
data. avg_latency number
Example: 570.9144927998836
data. ramp_time number
Example: 0
data. users number
Example: 1
Retrieve a summary of performance testing results for a specific job. curl -- request GET \
-- url "https://api.hyperexecute.cloud/v1.0/performance/summary/{jobId}" \
-- header "Authorization: Basic <encoded-value>"
{
"type" : "summary" ,
"data" : {
"job_id" : "493bac0f-e412-445b-b85a-88df79f56de3" ,
"start_timestamp" : "2025-10-16T08:11:21.000000000Z" ,
"end_timestamp" : "2025-10-16T08:13:06.000000000Z" ,
"duration" : 105000 ,
"total_requests" : 669 ,
"total_errors" : 668 ,
"error_rate" : 99.85052316890882 ,
"avg_bandwidth" : 0 ,
"avg_throughput" : 9.416666666666666 ,
"min_response_time" : 0 ,
"max_response_time" : 6127 ,
"avg_response_time" : 570.9144927998836 ,
"avg_latency" : 570.9144927998836 ,
"ramp_time" : 0 ,
"users" : 1
}
}