Performance Testing › Fetch detailed request statistics for a performance test within a specific job.
Performance Testing
Fetch detailed request statistics for a performance test within a specific job. This API retrieves detailed performance data for requests made during a test, including throughput, bandwidth, response times, and error counts, helping identify bottlenecks and analyze system performance under load.
Fetch detailed request statistics for a performance test within a specific job. curl -- request GET \
-- url "https://api.hyperexecute.cloud/v1.0/performance/requestStats/{jobId}" \
-- header "Authorization: Basic <encoded-value>"
{
"type" : "requestStats" ,
"data" : [
{
"label" : "HTTP: This is label" ,
"avg_throughput" : 1.9142857142857144 ,
"avg_bandwidth" : 194.6 ,
"#samples" : 134 ,
"start_timestamp" : "2025-10-16T08:12:11.104000000Z" ,
"end_timestamp" : "2025-10-16T08:13:03.044000000Z" ,
"response_time_stats" : {
"min" : 64 ,
"max" : 284 ,
"avg" : 88.82213047398498
} ,
"response_time_percentiles" : {
"50.0" : 0 ,
"90.0" : 105.13636363636364 ,
"95.0" : 116.34090909090911 ,
"99.0" : 169.53090909090895
} ,
"error_count" : 134 ,
"latency_stats" : {
"min" : 64 ,
"max" : 284 ,
"avg" : 85.65517241379311
} ,
"duration" : 51940 ,
"error_rate_in_current_sample" : 100 ,
"error_rate_in_all_samples" : 20.029895366218238
}
]
}
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
Query Parameters limit integer
Maximum number of records to return. Default value is 100
offset integer
Number of records to skip before starting to return. Default-0, Max - 10,000
sortBy string
Sort the records by a specific field.
order string
Sort order for the records.
timeRange string
Time range for filtering records in the format "startTimestamp,endTimestamp" (e.g., 2023-01-01T00:00:00,2023-02-01T00:00:00).
timeZone string
Time zone for filtering records. Must be in the format [+/-]HH:mm. Required when timeRange is provided. Example: +05:30
Response 200▼
application/json Successful operation
type string required
Type of response data
data object[] required
▶ Hide child attributesdata. label string
Example: "HTTP: This is label"
data. avg_throughput number
Example: 1.9142857142857144
data. avg_bandwidth number
Example: 194.6
data. #samples number
Example: 134
data. start_timestamp string
Example: "2025-10-16T08:12:11.104000000Z"
data. end_timestamp string
Example: "2025-10-16T08:13:03.044000000Z"
data. response_time_stats object
▶ Show child attributes
data. response_time_percentiles object
▶ Show child attributes
data. error_count number
Example: 134
data. latency_stats object
▶ Show child attributes
data. duration number
Example: 51940
data. error_rate_in_current_sample number
Example: 100
data. error_rate_in_all_samples number
Example: 20.029895366218238
Fetch detailed request statistics for a performance test within a specific job. curl -- request GET \
-- url "https://api.hyperexecute.cloud/v1.0/performance/requestStats/{jobId}" \
-- header "Authorization: Basic <encoded-value>"
{
"type" : "requestStats" ,
"data" : [
{
"label" : "HTTP: This is label" ,
"avg_throughput" : 1.9142857142857144 ,
"avg_bandwidth" : 194.6 ,
"#samples" : 134 ,
"start_timestamp" : "2025-10-16T08:12:11.104000000Z" ,
"end_timestamp" : "2025-10-16T08:13:03.044000000Z" ,
"response_time_stats" : {
"min" : 64 ,
"max" : 284 ,
"avg" : 88.82213047398498
} ,
"response_time_percentiles" : {
"50.0" : 0 ,
"90.0" : 105.13636363636364 ,
"95.0" : 116.34090909090911 ,
"99.0" : 169.53090909090895
} ,
"error_count" : 134 ,
"latency_stats" : {
"min" : 64 ,
"max" : 284 ,
"avg" : 85.65517241379311
} ,
"duration" : 51940 ,
"error_rate_in_current_sample" : 100 ,
"error_rate_in_all_samples" : 20.029895366218238
}
]
}