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
Download OpenAPI description
Overview
Languages
Servers
ObservePoint Production API
https://api.observepoint.com/
- ObservePoint Production APIhttps://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
Example: 50
Number of items in current result page
Example: 1
All JS variables found on specific page
Response
application/json
{ "metadata": { "pagination": { … } }, "pages": [ { … } ] }
- ObservePoint Production APIhttps://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'Response
application/json
{ "preAuditActionResults": { "zeroAndOut": true, "preAuditActionFailures": [ … ] }, "onPagesActionResults": { "totalConfiguredCount": 0, "totalFailedCount": 0, "resultsSample": [ … ] }, "startingUrlResults": { "failureType": "no_links_scanned_one_and_out", "linksExcludedSample": [ … ], "startingUrlFailures": [ … ] } }
- ObservePoint Production APIhttps://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'Response
No content