v3 API//
- Get Variable Inventory page list for specific tag account variable in specified audit run
Get Variable Inventory summary for specified audit run
Get Variable Inventory trends relative to specified audit run
Get Variable Inventory specific trend values relative to current day
Get Variable Inventory tag accounts list for specified audit run
Get top 500 variables sorted by variableSetPageCount
Get Variable Inventory page list for specific tag account in specified audit run
Get Variable Inventory page list where variable is not set for specific tag account variable in specified audit run. This endpoint does not support sorting by `variable_count` because we retrieve pages that do NOT have that specific variable
Get Variable Inventory unique values list for specific tag account variable in specified audit run
Get Variable Inventory page list for specific tag account variable value in specified audit run
Get Variable Inventory pa...
POST /v3/web-audits/{auditId}/runs/{runId}/reports/variable-inventory/tag-account-variable-pages
Security
API_Key
Filters applicable to Variable Inventory report
broken- initial or final URL arebroken,good- initial URL isgoodorredirectand final URL isgood
Enum:"broken""good"
Page load time in milliseconds. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
Page size in bytes. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
Number of redirects for a page. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.
POST
- specific
- range
curl -i -X POST \
'https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/variable-inventory/tag-account-variable-pages?page=0&size=50&sortBy=page_url&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"pageUrl": {
"filterType": "contains",
"filterValue": "string",
"negated": false
},
"finalPageUrl": {
"filterType": "contains",
"filterValue": "string",
"negated": false
},
"pageTitle": {
"filterType": "contains",
"filterValue": "ObserveP"
},
"initialPageStatusCode": {
"filterType": "specific",
"negated": true,
"filterValue": 0
},
"finalPageStatusCode": {
"filterType": "specific",
"negated": true,
"filterValue": 0
},
"combinedPageStatusCode": "broken",
"pageLoadTime": {
"min": 0,
"max": 0
},
"pageSize": {
"min": 0,
"max": 0
},
"redirectCount": {
"min": 0,
"max": 0
},
"hasBrokenLinks": true,
"tagId": 0,
"tagAccount": "string",
"variableName": "string"
}'Response
{ "metadata": { "pagination": { … } }, "pages": [ { … } ] }