Page Details Report
V3 API
Alert Summary Report
Audit Summary Report
Browser Logs Report
Cookie Inventory Report
Cookie Privacy report endpoints
File Changes Report
Page Summary Report
Request Privacy Report
Rule Summary Report
Tag Duplicates and Multiples Report
Tag Health Report
Tag Inventory Report
Tag Privacy Report
Variable Inventory Report
Audit Run Data
Web Journey Cookie Report
Account Usage Export
Alert Export
Audit Run Export
Consent Category Export
Exports Center
Manual Journey Run Export
Scheduled Exports
Web Journey Run Export
Account's Triggered Alerts
Account Usage Alerts
Alerts
Email Inbox Message Alerts
Account Usage
Email Inbox Configuration
Email Inbox Messages
Email Inboxes
Action Set Action Rules
Action Set Actions
Action Sets
Audit Actions
Audit Blocking Config
Audit Login Actions
Audits Consent Category
Audits Management
Consent Categories
Custom Headers
Data Sources
Geo Locations
Notification Center
Remote File Mappings
Rules
Schedules
Site Censuses
User Events
Web Journey Blocking Config
Web Journey Custom Headers
Web Journeys Management
GET /v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/info
Get page information from specified audit run on a given page
Security
API_Key
GET
curl -i -X GET \
'https://api.observepoint.com/v3/web-audits/107239/runs/33010/pages/f9d32cc7cc2046d6decb145a80289287f5226323/info?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
Example:"https://example.com/some-path"
Final status code - after all redirects. If there were no redirects, equal to initialStatusCode
Example:302
error produced by browser upon opening the page
Example:"This site can’t be reached. example.com’s server IP address could not be found. ERR_NAME_NOT_RESOLVED"
(Optional) Present if failure/s is/are present in On-Page Actions execution
Response
{ "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": [ { … } ], "webVitalsSummary": { "largestContentfulPaint": { … }, "cumulativeLayoutShift": { … }, "firstContentfulPaint": { … }, "timeToFirstByte": { … } }, "accessibilityChecksSummary": { "configurationTags": [ … ], "scores": { … }, "issues": [ … ], "inconclusive": [ … ] } }