Pages API
Pages API helps you to get the page performance metrics.
Getting a list of pages
This API is used to get list of pages and its metrics for the specific duration.
RequestGET /api/browser/pagesSample Request
curl "https://api.atatus.com/api/browser/pages?admin_api_key=79769089efbb4767a542e0696448e34c&timeDur=7d"Parameters
Name | Description |
---|---|
timeDur Required | The time duration. Eg: 30m, 60m, 6h, 12h, 1d, 2d, 3d, 7d, 14d, 1M, 2M, 3M |
{
"data" : [
{
"id" : "f580a7b276828278f764106d29007a15",
"url" : "https://www.acme.com/app/dashboard",
"throughput" : 7,
"throughputPercentage" : 15.21,
"underOnePercent" : false,
"page" : {
"throughput" : 7,
"loadTime" : 608.72,
"frontendTime" : 567.43,
"networkTime" : 41.29,
"domTime" : 413.86,
"renderTime" : 153.57,
"percentile_99" : 770.04,
"percentile_95" : 766.2,
"percentile_90" : 761.4,
"percentile_50" : 576,
"percentile_75" : 722.5,
"throughputPercentage" : 15.21,
"timeConsumedPercentage" : 3.24,
"loadTimePercentage" : 5,
"underOnePercent" : false
},
"spa" : {
"throughput" : 0,
"spaTime" : 0,
"javascriptTime" : 0,
"waitTime" : 0,
"percentile_99" : 0,
"percentile_90" : 0,
"percentile_95" : 0,
"percentile_75" : 0,
"percentile_50" : 0,
"throughputPercentage" : 0,
"timeConsumedPercentage" : 0,
"spaTimePercentage" : 0,
"underOnePercent" : false
}
}
],
"count" : 0,
"limit" : 0,
"page" : 0,
"totalPages" : 0,
"totalCount" : 0,
"hasMore" : false,
}
Getting a specific page
This API is used to get list of pages and its metrics for the specific duration.
RequestGET /api/browser/pages/:pageIdSample Request
curl "https://api.atatus.com/api/browser/pages/f580a7b276828278f764106d29007a15?admin_api_key=79769089efbb4767a542e0696448e34c&timeDur=7d"Parameters
Name | Description |
---|---|
pageId Required | ID of the specific page |
timeDur Required | The time duration. Eg: 30m, 60m, 6h, 12h, 1d, 2d, 3d, 7d, 14d, 1M, 2M, 3M |
{
"id" : "f580a7b276828278f764106d29007a15",
"url" : "https://www.acme.com/app/dashboard",
"throughput" : 7,
"throughputPercentage" : 15.21,
"underOnePercent" : false,
"page" : {
"throughput" : 7,
"loadTime" : 608.72,
"frontendTime" : 567.43,
"networkTime" : 41.29,
"domTime" : 413.86,
"renderTime" : 153.57,
"percentile_99" : 770.04,
"percentile_95" : 766.2,
"percentile_90" : 761.4,
"percentile_50" : 576,
"percentile_75" : 722.5,
"throughputPercentage" : 15.21,
"timeConsumedPercentage" : 3.24,
"loadTimePercentage" : 5,
"underOnePercent" : false
},
"spa" : {
"throughput" : 0,
"spaTime" : 0,
"javascriptTime" : 0,
"waitTime" : 0,
"percentile_99" : 0,
"percentile_90" : 0,
"percentile_95" : 0,
"percentile_75" : 0,
"percentile_50" : 0,
"throughputPercentage" : 0,
"timeConsumedPercentage" : 0,
"spaTimePercentage" : 0,
"underOnePercent" : false
}
}