This section documents the V3 API endpoints that provide access to comprehensive audit and journey data from ObservePoint. Use these endpoints to retrieve detailed reports, export data, manage alerts, configure scans and privacy settings, and analyze web performance metrics from your ObservePoint scans.
V3 API
Filters
Page load time in milliseconds. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
Page size in bytes. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
Number of redirects for a page. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
broken- initial or final URL arebroken,good- initial URL isgoodorredirectand final URL isgood
Usage:
false- only pages that do not have a parent page will be returned - starting URLstrue- only pages that have a parent page will be returned - pages that were discovered during crawlingnullor undefined - all pages will be returned.
non-empty list of kinds of errors present on a page, depends on filterType:
ALL: page has all types of errors specified inerrorTypeslistANY: page has any type of errors present in specifiederrorTypeslist
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/reports/page-summary
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/page-summary \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"pageLoadTime": {
"min": 0,
"max": 0
},
"pageUrl": {
"filterType": "contains",
"filterValue": "string",
"negated": false
},
"finalPageUrl": {
"filterType": "contains",
"filterValue": "string",
"negated": false
},
"pageStatusCode": "good",
"pageSize": {
"min": 0,
"max": 0
},
"primaryTagsOnly": true,
"tagId": 0,
"tagCategoryId": 0,
"tagAccount": "string",
"tagVendorId": 0,
"pageTitle": {
"filterType": "contains",
"filterValue": "ObserveP"
},
"initialPageStatusCode": {
"filterType": "specific",
"negated": true
},
"finalPageStatusCode": {
"filterType": "specific",
"negated": true
},
"hasBrokenLinks": true,
"redirectCount": {
"min": 0,
"max": 0
},
"combinedPageStatusCode": "broken",
"hasParentPage": true,
"pageUrlMatchingAuditFilterConfiguration": true,
"errors": {
"filterType": "ALL",
"errorTypes": [
"ON_PAGE_ACTION_ERROR"
]
},
"largestContentfulPaint": {
"min": 0,
"max": 0
},
"firstContentfulPaint": {
"min": 0,
"max": 0
},
"timeToFirstByte": {
"min": 0,
"max": 0
},
"cumulativeLayoutShift": {
"min": 0.1,
"max": 0.1
}
}'{ "pagesFiltered": 0, "totalPages": 0, "averagePageLoadTime": 0, "brokenPages": 0, "pagesWithBrokenInitialStatusCode": 0, "pagesWithBrokenFinalStatusCode": 0, "pageCountByLoadTimes": { "below3": 0, "3to6": 0, "6to10": 0, "10andAbove": 0 }, "pageCountsByInitialStatusCodes": { "good": 0, "redirects": 0, "broken": 0 }, "pageCountsByFinalStatusCodes": { "good": 0, "redirects": 0, "broken": 0 }, "pagesWithBrokenLinks": 0, "webVitals": { "medianLargestContentfulPaint": 0.1, "medianFirstContentfulPaint": 0.1, "medianTimeToFirstByte": 0.1, "medianCumulativeLayoutShift": 0.1, "p75LargestContentfulPaint": 0.1, "p75FirstContentfulPaint": 0.1, "p75TimeToFirstByte": 0.1, "p75CumulativeLayoutShift": 0.1 } }
Filters
Page load time in milliseconds. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
Page size in bytes. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
Number of redirects for a page. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
broken- initial or final URL arebroken,good- initial URL isgoodorredirectand final URL isgood
Usage:
false- only pages that do not have a parent page will be returned - starting URLstrue- only pages that have a parent page will be returned - pages that were discovered during crawlingnullor undefined - all pages will be returned.
non-empty list of kinds of errors present on a page, depends on filterType:
ALL: page has all types of errors specified inerrorTypeslistANY: page has any type of errors present in specifiederrorTypeslist
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/reports/page-summary/pages
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/page-summary/pages?page=0&size=50&sortBy=page_url&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"pageLoadTime": {
"min": 0,
"max": 0
},
"pageUrl": {
"filterType": "contains",
"filterValue": "string",
"negated": false
},
"finalPageUrl": {
"filterType": "contains",
"filterValue": "string",
"negated": false
},
"pageStatusCode": "good",
"pageSize": {
"min": 0,
"max": 0
},
"primaryTagsOnly": true,
"tagId": 0,
"tagCategoryId": 0,
"tagAccount": "string",
"tagVendorId": 0,
"pageTitle": {
"filterType": "contains",
"filterValue": "ObserveP"
},
"initialPageStatusCode": {
"filterType": "specific",
"negated": true
},
"finalPageStatusCode": {
"filterType": "specific",
"negated": true
},
"hasBrokenLinks": true,
"redirectCount": {
"min": 0,
"max": 0
},
"combinedPageStatusCode": "broken",
"hasParentPage": true,
"pageUrlMatchingAuditFilterConfiguration": true,
"errors": {
"filterType": "ALL",
"errorTypes": [
"ON_PAGE_ACTION_ERROR"
]
},
"largestContentfulPaint": {
"min": 0,
"max": 0
},
"firstContentfulPaint": {
"min": 0,
"max": 0
},
"timeToFirstByte": {
"min": 0,
"max": 0
},
"cumulativeLayoutShift": {
"min": 0.1,
"max": 0.1
}
}'OK, return insights by page
Common metadata for iterable
Total number of items available from all result pages combined
Page size - number of items per result page configured by size query parameter or default page size
Number of redirects from initialUrl to finalUrl of the page or 0 if none
error produced by browser upon opening the page
{ "metadata": { "pagination": { … } }, "pages": [ { … } ] }
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/reports/page-summary/trends
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/page-summary/trends \
-H 'Authorization: YOUR_API_KEY_HERE'{ "runs": [ { … } ] }