Performance API Endpoints
The Performance API methods allow you to manage your front-end performance testing as programmatic data so you can represent them in a custom dashboard that is meaningful for your organization.
Refer to Getting Started for Authentication and Server information.
Get Performance Test Results
GET /v2/performance/metrics/
Retrieves the results of performance tests run by the requesting account and returns the metric values for those tests.
Parameters
page_url | | QUERY | OPTIONAL | STRING | Filter results to return only tests run on a specific URL. |
metric_names | | QUERY | OPTIONAL | ARRAY of STRINGS | Provide a list of specific metric values to return. If omitted, the result includes all metrics. See Performance Metric Values for a list of supported metrics. |
start_date | | QUERY | OPTIONAL | DATE_TIME STRING | Filter results based on tests run on or after this date. |
end_date | | BODY | OPTIONAL | DATE-TIME STRING | Filter results based on tests run on or before this date. |
- United States
- Europe
Sample Request
curl --location --request GET 'https://api.us-west-1.saucelabs.com/v2/performance/metrics/?metric_names=speedIndex' | json_pp
Sample Request
curl --location --request GET 'https://api.eu-central-1.saucelabs.com/v2/performance/metrics/?metric_names=speedIndex' | json_pp
Responses
200 | Success. | |
404 | Not found. |
Sample Response
{
"items": [
{
"job_id": "0308500535c24468a977b250da266b18",
"job_owner": "jim.smith",
"job_name_hash": "05833b66a7c1ac61342cdcedca58b07e28298d23",
"metric_data": {
"speedIndex": 5645
},
"page_url": "https://saucelabs.com/",
"order_index": 0,
"job_creation_time": "2021-04-15T01:24:11Z",
"load_id": "2ad6fbe41070fe02b9cc2fc0271ec65d736acd88",
"loader_id": "DAC987D7B5A17D680DD6EB966B13AA56",
"error": null
},
{
"job_id": "b6bee25245724ddca6b852a7ec49f155",
"job_owner": "jim.smith",
"job_name_hash": "05833b66a7c1ac61342cdcedca58b07e28298d23",
"metric_data": {
"speedIndex": 5668
},
"page_url": "https://saucelabs.com/",
"order_index": 0,
"job_creation_time": "2021-04-15T01:23:27Z",
"load_id": "85b9dd1c20dc7347a598566bcbca171cf9f525d3",
"loader_id": "4F399131AA5741C0345752C066BDA29C",
"error": null
}
],
"links": {
"next": null,
"previous": null
}
}