This section documents the V3 Reporting API endpoints that provide access to comprehensive audit and journey data from ObservePoint. Use these endpoints to retrieve detailed reports, export data, manage alerts, and analyze web performance metrics from your ObservePoint scans.
V3 API
https://api.observepoint.com/
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 isgood
orredirect
and 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 crawlingnull
or 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 inerrorTypes
listANY
: page has any type of errors present in specifiederrorTypes
list
- ObservePoint Production API
https://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 isgood
orredirect
and 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 crawlingnull
or 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 inerrorTypes
listANY
: page has any type of errors present in specifiederrorTypes
list
- ObservePoint Production API
https://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 API
https://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": [ { … } ] }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/reports/page-summary/trends/web-vitals
- 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/web-vitals \
-H 'Authorization: YOUR_API_KEY_HERE'
Page Summary Web Vitals trends data
Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:
- An uppercase T must separate the date and time portions.
- An uppercase Z must denote that a numeric time zone offset isn't present.
In general, these timestamp requirements are the same in AWS Step Functions - Choice Rules
Web Vitals trends statistics (min, max, average, median, 25th and 75th percentiles)
Web Vitals trends statistics (min, max, average, median, 25th and 75th percentiles)
Web Vitals trends statistics (min, max, average, median, 25th and 75th percentiles)
Web Vitals trends statistics (min, max, average, median, 25th and 75th percentiles)
{ "runs": [ { … } ] }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/reports/page-summary/trends/{trendName}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/web-audits/107239/reports/page-summary/trends/{trendName}?days=1' \
-H 'Authorization: YOUR_API_KEY_HERE'
list of page insight
Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:
- An uppercase T must separate the date and time portions.
- An uppercase Z must denote that a numeric time zone offset isn't present.
In general, these timestamp requirements are the same in AWS Step Functions - Choice Rules
{ "runs": [ { … } ] }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/reports/page-summary/trends/web-vitals/{trendName}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/web-audits/107239/reports/page-summary/trends/web-vitals/{trendName}?days=1' \
-H 'Authorization: YOUR_API_KEY_HERE'
Page Summary Web Vitals specific trend values
Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:
- An uppercase T must separate the date and time portions.
- An uppercase Z must denote that a numeric time zone offset isn't present.
In general, these timestamp requirements are the same in AWS Step Functions - Choice Rules
Distribution of pages by buckets of web vitals values
Web Vitals trends statistics (min, max, average, median, 25th and 75th percentiles)
{ "runs": [ { … } ] }