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.
- Get requests by HAR entry indices
V3 API
Indicates if cookie domain is different from domain of a page it was set on. owned_3rd_party is deprecated
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/initiators
- 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/initiators \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"tagsOnly": true,
"primaryTagsOnly": true,
"tagId": 0,
"tagAccount": "string",
"tagVendorId": 0,
"tagCategoryId": 0,
"withCookiesOnly": true,
"cookieName": {
"filterType": "contains",
"filterValue": "string"
},
"cookieDomain": {
"filterType": "contains",
"filterValue": "string"
},
"partyType": "1st_party",
"requestUrl": {
"filterType": "contains",
"filterValue": "string"
},
"requestStatusCode": "good"
}'OK
Represents a node in the initiators tree. Each node/vertex is a network request. The root node is the page request. The root node does not have relationToParent Leaf nodes are requests that have no children. To get information about specific nodes use POST /v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/initiators/request-log endpoint with harEntryIndices specified
The 0-based index of the HAR entry that this request corresponds to. Used to uniquely identify a request on a page.
Default value is normal, may be omitted. The root node does not have relation.
When filters applied, only the following nodes are retained in the children array:
- leaf nodes matching filters,
- intermediate nodes matching filters,
- intermediate nodes not matching filters but having successors matching filters.
Total number of nodes under the current node (including its children, grand-children and so on)
{ "initiatorsSummary": { "totalNetworkRequestCount": 1, "filteredNetworkRequestCount": 0, "totalBrokenNetworkRequestCount": 0, "filteredBrokenNetworkRequestCount": 0, "totalTagCount": 0, "filteredTagCount": 0, "totalCookieCount": 0, "filteredCookieCount": 0 }, "initiatorsTreeRoot": { "harEntryIndex": 0, "relationToParent": "normal", "children": [ … ], "originalSubtreeSize": 0, "filteredSubtreeSize": 0 } }
- ObservePoint Production APIhttps://api.observepoint.com/v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/initiators/request-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/initiators/request-log \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"harEntryIndices": [
0
]
}'OK
The 0-based index of the HAR entry that this request corresponds to. Used to uniquely identify a request on a page.
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
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
{ "requests": [ { … } ] }