v3 API//
- Get request initiators info for a given page
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 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
Return insights on a given page for all runs in the given days
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 request initiators in...
POST /v3/web-audits/{auditId}/runs/{runId}/pages/{pageId}/initiators
Get request initiators info for specified audit run page
Security
API_Key
Indicates if cookie domain is different from domain of a page it was set on. owned_3rd_party is deprecated
Enum:"1st_party""owned_3rd_party""3rd_party"
POST
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
Response
{ "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, "matchesFilter": true } }