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//
- Return insights on a given page for all runs in the given days
Return specific page information
Get page links
Download page links
Return remote file mapping results
Return page tag information
Return page cookie information
Return network requests fired on a given page
Get request initiators info for a given page
Get requests by HAR entry indices
Get cookies for all HAR entries on a page
Return console logs summary on a given page
Return console logs generated on a given page
Get Page Details Web Vitals trends relative to specified audit run
Return specific insight trend on a given page for all runs in the given duration (days)
Get Page Details Web Vitals specific trend values relative to current day
Get cookie origin
Return insights on a give...
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}/pages/{pageId}/console-log
- 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/pages/f9d32cc7cc2046d6decb145a80289287f5226323/console-log?page=0&size=50&sortBy=message&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"includedLevels": [
"error"
],
"search": "string"
}'Response
application/json
{ "metadata": { "pagination": { … } }, "consoleLogs": [ { … } ] }
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/sparklines
- 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/sparklines \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
[ { "runId": 0, "runCompletionDate": "2019-08-24T14:15:22Z", "pageInsights": { … } } ]
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/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/pages/f9d32cc7cc2046d6decb145a80289287f5226323/trends/web-vitals \
-H 'Authorization: YOUR_API_KEY_HERE'Page Details 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
Example: "2016-08-18T17:33:00Z"
Response
application/json
{ "runs": [ { … } ] }