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}/pages/{pageId}/info
- 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/info?withBlockedRequestSummary=false&withLinkSummary=false&withParentPage=false&withScreenshotUrl=false' \
-H 'Authorization: YOUR_API_KEY_HERE'
Page Info by page Id
Initial page URL - before the first redirect. If there were no redirects, equal to finalPageUrl
Initial page status code - before the first redirect. If there were no redirects, equal to finalStatusCode
Final page URL - after all redirects. If there were no redirects, equal to initialPageUrl
Final status code - after all redirects. If there were no redirects, equal to initialStatusCode
error produced by browser upon opening the page
(Optional) Present if failure/s is/are present in On-Page Actions execution
{ "url": "string", "initialPageUrl": "string", "loadTime": 0, "statusCode": 200, "initialStatusCode": 0, "size": 0, "screenshot": "string", "parent": { "pageId": "string", "pageUrl": "string" }, "finalPageUrl": "https://example.com/some-path", "finalStatusCode": 302, "title": "My Cards - ObservePoint", "browserError": "This site can’t be reached. example.com’s server IP address could not be found. ERR_NAME_NOT_RESOLVED", "visitStartTimestamp": 1637944293, "visitEndTimestamp": 1637944293, "redirects": [ { … } ], "links": { "linkToInitialUrlCount": 32, "linkToFinalUrlCount": 12, "linksFromThisPageV2": { … } }, "onPageActionResults": [ { … } ], "blockedRequestSummary": { "blockedRequests": true }, "webVitalsSummary": { "largestContentfulPaint": { … }, "cumulativeLayoutShift": { … }, "firstContentfulPaint": { … }, "timeToFirstByte": { … } }, "accessibilityChecksSummary": { "configurationTags": [ … ], "scores": { … }, "issues": [ … ], "inconclusive": [ … ] } }
Unique identification number for web audit run-page, it is different from dcUUID
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/links/{linkDirection}
- 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/links/{linkDirection}?options=to_internal_pages&thisUrlType=initial' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "links": [ { … } ] }
Unique identification number for web audit run-page, it is different from dcUUID
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/links/{linkDirection}/download
- 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/links/{linkDirection}/download?options=to_internal_pages&thisUrlType=initial' \
-H 'Authorization: YOUR_API_KEY_HERE'
No content
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/file-mapping
- 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/file-mapping \
-H 'Authorization: YOUR_API_KEY_HERE'
[ { "remoteFileMappingId": 0, "match": "string", "matchType": 1, "fileUrl": "string", "mappedRequests": [ … ] } ]
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/request-log
- 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/request-log?page=0&size=50&sortBy=request_start_time&sortDesc=false&search=string&showPreAuditActionRequests=false&showFileChanges=false' \
-H 'Authorization: YOUR_API_KEY_HERE'
OK, return a list of network requests send
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
The type of resource that was requested. e.g. 'xhr', 'script', 'image', 'stylesheet', 'font', 'document', 'other'. Available since WORK-24937
The IP address of the server that responded to the request
Available only for JavaScript files for now. Provided only for customers that have Privacy features available.
(Optional) Present if the request was blocked. TagId and Tag Category Id not included here since RequestLog's tag will have that information.
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
Use geoLocationInfo
property instead. It will be renamed to geoLocation
soon
{ "metadata": { "pagination": { … } }, "requests": [ { … } ] }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/console-log-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/pages/f9d32cc7cc2046d6decb145a80289287f5226323/console-log-summary \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"includedLevels": [
"error"
],
"search": "string"
}'
{ "errorLogCount": 0, "warnLogCount": 0, "debugLogCount": 0, "infoLogCount": 4, "otherLogCount": 0 }
- ObservePoint Production API
https://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"
}'
{ "metadata": { "pagination": { … } }, "consoleLogs": [ { … } ] }
- ObservePoint Production API
https://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'
[ { "runId": 0, "runCompletionDate": "2019-08-24T14:15:22Z", "pageInsights": { … } } ]
- ObservePoint Production API
https://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
{ "runs": [ { … } ] }
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/pages/{pageId}/insight-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/pages/f9d32cc7cc2046d6decb145a80289287f5226323/insight-trends/pageSize?day=120' \
-H 'Authorization: YOUR_API_KEY_HERE'
[ { "runId": 0, "runCompletionDate": "2019-08-24T14:15:22Z", "trendName": "string", "trendValue": 0 } ]
- ObservePoint Production API
https://api.observepoint.com/v3/web-audits/{auditId}/pages/{pageId}/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/pages/f9d32cc7cc2046d6decb145a80289287f5226323/trends/web-vitals/{trendName}?days=1' \
-H 'Authorization: YOUR_API_KEY_HERE'
Page Details Web Vitals specific trend values
Web Vitals trends statistics (min, max, average, median)
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
{ "stats": { "min": 0.1, "max": 0.1, "average": 0.1, "median": 0.1 }, "runs": [ { … } ] }