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/
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/scores
- 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/scores \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "total": { "score": 0.1, "max": 0 }, "tagPresence": { "score": 0.1, "max": 0 }, "tagPerformance": { "score": 0.1, "max": 0 }, "rules": { "score": 0.1, "max": 0 }, "pagePerformance": { "score": 0.1, "max": 0 }, "cookies": { "score": 0.1, "max": 0 } }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages
- 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/pages?page=0&size=50&sortBy=url&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "metadata": { "pagination": { … } }, "pages": [ { … } ] }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/geo-locations
- 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/geo-locations \
-H 'Authorization: YOUR_API_KEY_HERE'
[ { "id": 0, "countryCode": 0, "countryName": "string" } ]
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/request-domains
- 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/request-domains \
-H 'Authorization: YOUR_API_KEY_HERE'
[ { "domain": "observepoint.com", "scheme": "https", "isValid": true } ]
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/javascript-variables
- 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/javascript-variables?size=50&startAfterPageId=f9d32cc7cc2046d6decb145a80289287f5226323' \
-H 'Authorization: YOUR_API_KEY_HERE'
Pages with JS variables
Metadata for iterable results from S3
Represents pagination metadata for results from S3, where each result page contains multiple pageIds. It's not possible to efficiently get total count of files in S3, so metadata is missing fields like totalCount
and totalPageCount
Page size - number of items per result page configured by size
query parameter or default page size
Number of items in current result page
All JS variables found on specific page
{ "metadata": { "pagination": { … } }, "pages": [ { … } ] }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/reports/failures
- 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/failures \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "preAuditActionResults": { "zeroAndOut": true, "preAuditActionFailures": [ … ] }, "onPagesActionResults": { "totalConfiguredCount": 0, "totalFailedCount": 0, "resultsSample": [ … ] }, "startingUrlResults": { "failureType": "no_links_scanned_one_and_out", "linksExcludedSample": [ … ], "startingUrlFailures": [ … ] } }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/screenshot
- 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/pages/f9d32cc7cc2046d6decb145a80289287f5226323/screenshot \
-H 'Authorization: YOUR_API_KEY_HERE'
No content