Skip to content

V3 API

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.

Languages
Servers
ObservePoint Production API

https://api.observepoint.com/

Audit Run Data

Retrieve audit run data including pages, cookies, geo-locations, network requests, JS variables and failures for web audit runs

Operations

Page Details Report

Detailed information about specific pages including tags, cookies, request logs, and console logs

Operations

Page Summary Report

Page Summary report endpoints

Operations

Audit Summary Report

Audit Summary report endpoints

Operations

Alert Summary Report

Alert Summary report endpoints

Operations

Rule Summary Report

Rule Summary report endpoints

Operations

Tag Inventory Report

Tag Inventory report endpoints

Operations

Tag Health Report

Tag Health report endpoints

Operations

Get Tag Health summary for specified audit run

Request

POST /v3/web-audits/{auditId}/runs/{runId}/reports/tag-health
Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

Example: 107239
runIdinteger(int64)required

Unique identification number for web audit or journey run

Example: 33010
Bodyapplication/json

Filters applicable to Tag Inventory report

pageUrlobject
finalPageUrlobject
pageTitleobject
initialPageStatusCodeobject
finalPageStatusCodeobject
combinedPageStatusCodestring
  • broken - initial or final URL are broken,
  • good - initial URL is good or redirect and final URL is good
Enum"broken""good"
pageLoadTimeobject

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.

pageSizeobject

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.

redirectCountobject

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.

hasBrokenLinksboolean
pageUrlMatchingAuditFilterConfigurationboolean
primaryTagsOnlyboolean

if true then return only pages/tags with primary tags else return all pages/tags

tagLoadTimeobject

Should have min and/or max properties defined

tagIdinteger

Tag ID

tagCategoryIdinteger

Tag category ID

tagVendorIdinteger

Tag vendor ID

tagAccountstring

Tag account

tagRequestSizeobject

Tag request size in bytes. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.

pageStatusCodestringDeprecated

good - 2xx, redirects - 3xx, broken - all others

Enum"good""redirects""broken"
tagStatusCodestringDeprecated

good - 2xx, redirects - 3xx, broken - all others

Enum"good""redirects""broken"
curl -i -X POST \
  https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/tag-health \
  -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
    },
    "finalPageStatusCode": {
      "filterType": "specific",
      "negated": true
    },
    "combinedPageStatusCode": "broken",
    "pageLoadTime": {
      "min": 0,
      "max": 0
    },
    "pageSize": {
      "min": 0,
      "max": 0
    },
    "redirectCount": {
      "min": 0,
      "max": 0
    },
    "hasBrokenLinks": true,
    "pageUrlMatchingAuditFilterConfiguration": true,
    "pageStatusCode": "good",
    "primaryTagsOnly": true,
    "tagLoadTime": {
      "min": 0,
      "max": 0
    },
    "tagStatusCode": "good",
    "tagId": 0,
    "tagCategoryId": 0,
    "tagVendorId": 0,
    "tagAccount": "string",
    "tagRequestSize": {
      "min": 0,
      "max": 0
    }
  }'

Responses

Tag Health summary data

Bodyapplication/json
totalPageCountintegerrequired

Total number of pages audited

filteredPageCountintegerrequired

Number of pages passing all applied filters

filteredTagLoadTimeAverageintegerrequired

Tag load time, in milliseconds

Default 0
filteredTagRequestSizeAverageintegerrequired

Tag network request size, in bytes

filteredSlowTagCountintegerrequired

Number of tag request loadeded slower than 2 sec passing all applied filters

filteredSlowTagPercentagenumber(double)required

Percentage of tag requests loaded slower than 2 sec passing all applied filters

filteredBrokenTagCountintegerrequired

Number of broken tag requests (0, 400+ or 500+ HTTP status code) passing all applied filters

filteredBrokenTagPercentagenumber(double)required

Percentage of tag requests loaded slower than 2 sec passing all applied filters

filteredTagInstanceCountintegerrequired

Number of tag requests passing all applied filters

tagLoadTimeDistributionobjectrequired
tagLoadTimeDistribution.​below500integerrequired

Number of tag requests with load time < 500 ms

tagLoadTimeDistribution.​500to1000integerrequired

Number of tag requests with 500 ms ≤ load time < 1000 ms

tagLoadTimeDistribution.​1000to2000integerrequired

Number of tag requests with 1000 ms ≤ load time < 2000 ms

tagLoadTimeDistribution.​above2000integerrequired

Number of tag requests with 2000 ms ≤ load time

tagStatusCodeDistributionobjectrequired

See StatusCodeEnum

tagStatusCodeDistribution.​goodintegerrequired

Number of tag requests with "good" status code

tagStatusCodeDistribution.​redirectintegerrequired

Number of tag requests with "redirect" status code

tagStatusCodeDistribution.​brokenintegerrequired

Number of tag requests with "broken" status code

Response
application/json
{ "totalPageCount": 0, "filteredPageCount": 0, "filteredTagLoadTimeAverage": 0, "filteredTagRequestSizeAverage": 0, "filteredSlowTagCount": 0, "filteredSlowTagPercentage": 0.1, "filteredBrokenTagCount": 0, "filteredBrokenTagPercentage": 0.1, "filteredTagInstanceCount": 0, "tagLoadTimeDistribution": { "below500": 0, "500to1000": 0, "1000to2000": 0, "above2000": 0 }, "tagStatusCodeDistribution": { "good": 0, "redirect": 0, "broken": 0 } }

Get Tag Health trends relative to for specified audit run

Request

GET /v3/web-audits/{auditId}/runs/{runId}/reports/tag-health/trends
Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

Example: 107239
runIdinteger(int64)required

Unique identification number for web audit or journey run

Example: 33010
curl -i -X GET \
  https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/tag-health/trends \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Tag Health trends data

Bodyapplication/json
runsArray of objectsrequired
runs[].​runIdinteger(int64)required
Example: 33010
runs[].​completedAtstring(date-time)required

Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:

  1. An uppercase T must separate the date and time portions.
  2. 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

Example: "2016-08-18T17:33:00Z"
runs[].​totalTagLoadTimeAverageintegerrequired

Tag load time, in milliseconds

Default 0
runs[].​totalTagRequestSizeAverageintegerrequired

Tag network request size, in bytes

runs[].​totalSlowTagCountintegerrequired

Total number of tag request loaded slower than 2 sec

runs[].​slowTagPercentagenumber(double)

Percentage of tag requests loaded slower than 2 sec

runs[].​totalBrokenTagCountintegerrequired

Total number of broken tag requests (0, 400+ or 500+ HTTP status code)

runs[].​brokenTagPercentagenumber(double)

Percentage of tag requests loaded slower than 2 sec

runs[].​totalTagInstanceCountintegerrequired

Number of tag requests passing all applied filters

Response
application/json
{ "runs": [ { … } ] }

Get Tag Health specific trend values relative to current day

Request

GET /v3/web-audits/{auditId}/reports/tag-health/trends/{trendName}
Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

Example: 107239
trendNamestringrequired

name of requested trend

Enum"average_tag_load_time""average_tag_request_size""slow_tags""slow_tag_percentage""broken_tags""broken_tag_percentage""tag_requests"
Query
daysinteger[ 1 .. 390 ]required

Number of days to get trend values for, relative to current time

curl -i -X GET \
  'https://api.observepoint.com/v3/web-audits/107239/reports/tag-health/trends/{trendName}?days=1' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Tag Health specific trend values

Bodyapplication/json
runsArray of objectsrequired
runs[].​runIdinteger(int64)required
Example: 33010
runs[].​completedAtstring(date-time)required

Date-time in RFC3339 profile ISO 8601 format with the following additional restrictions:

  1. An uppercase T must separate the date and time portions.
  2. 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

Example: "2016-08-18T17:33:00Z"
runs[].​trendValuenumberrequired
Response
application/json
{ "runs": [ { … } ] }

Get Tag Health all tags list for specified audit run

Request

POST /v3/web-audits/{auditId}/runs/{runId}/reports/tag-health/tags
Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

Example: 107239
runIdinteger(int64)required

Unique identification number for web audit or journey run

Example: 33010
Bodyapplication/json

Filters applicable to Tag Inventory report

pageUrlobject
finalPageUrlobject
pageTitleobject
initialPageStatusCodeobject
finalPageStatusCodeobject
combinedPageStatusCodestring
  • broken - initial or final URL are broken,
  • good - initial URL is good or redirect and final URL is good
Enum"broken""good"
pageLoadTimeobject

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.

pageSizeobject

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.

redirectCountobject

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.

hasBrokenLinksboolean
pageUrlMatchingAuditFilterConfigurationboolean
primaryTagsOnlyboolean

if true then return only pages/tags with primary tags else return all pages/tags

tagLoadTimeobject

Should have min and/or max properties defined

tagIdinteger

Tag ID

tagCategoryIdinteger

Tag category ID

tagVendorIdinteger

Tag vendor ID

tagAccountstring

Tag account

tagRequestSizeobject

Tag request size in bytes. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.

pageStatusCodestringDeprecated

good - 2xx, redirects - 3xx, broken - all others

Enum"good""redirects""broken"
tagStatusCodestringDeprecated

good - 2xx, redirects - 3xx, broken - all others

Enum"good""redirects""broken"
curl -i -X POST \
  https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/tag-health/tags \
  -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
    },
    "finalPageStatusCode": {
      "filterType": "specific",
      "negated": true
    },
    "combinedPageStatusCode": "broken",
    "pageLoadTime": {
      "min": 0,
      "max": 0
    },
    "pageSize": {
      "min": 0,
      "max": 0
    },
    "redirectCount": {
      "min": 0,
      "max": 0
    },
    "hasBrokenLinks": true,
    "pageUrlMatchingAuditFilterConfiguration": true,
    "pageStatusCode": "good",
    "primaryTagsOnly": true,
    "tagLoadTime": {
      "min": 0,
      "max": 0
    },
    "tagStatusCode": "good",
    "tagId": 0,
    "tagCategoryId": 0,
    "tagVendorId": 0,
    "tagAccount": "string",
    "tagRequestSize": {
      "min": 0,
      "max": 0
    }
  }'

Responses

Tag Health all tags data

Bodyapplication/json
tagsArray of objectsrequired
tags[].​tagIdintegerrequired

Tag ID

tags[].​tagNamestringrequired

Tag name

tags[].​tagCategoryIdintegerrequired

Tag category ID

tags[].​tagCategoryNamestringrequired

Name of a category of a tag

tags[].​tagInstanceCountintegerrequired

Number of tag requests

tags[].​tagRequestSizeAverageintegerrequired

Tag network request size, in bytes

tags[].​tagLoadTimeDistributionobjectrequired
tags[].​tagLoadTimeDistribution.​below500integerrequired

Number of tag requests with load time < 500 ms

tags[].​tagLoadTimeDistribution.​500to1000integerrequired

Number of tag requests with 500 ms ≤ load time < 1000 ms

tags[].​tagLoadTimeDistribution.​1000to2000integerrequired

Number of tag requests with 1000 ms ≤ load time < 2000 ms

tags[].​tagLoadTimeDistribution.​above2000integerrequired

Number of tag requests with 2000 ms ≤ load time

tags[].​tagStatusCodeDistributionobjectrequired

See StatusCodeEnum

tags[].​tagStatusCodeDistribution.​goodintegerrequired

Number of tag requests with "good" status code

tags[].​tagStatusCodeDistribution.​redirectintegerrequired

Number of tag requests with "redirect" status code

tags[].​tagStatusCodeDistribution.​brokenintegerrequired

Number of tag requests with "broken" status code

tags[].​filteredTagAccountCountintegerrequired

Number of accounts of a tag passing all applied filters

Response
application/json
{ "tags": [ { … } ] }

Get Tag Health tag accounts list for specified audit run

Request

POST /v3/web-audits/{auditId}/runs/{runId}/reports/tag-health/tags/{tagId}/accounts
Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

Example: 107239
runIdinteger(int64)required

Unique identification number for web audit or journey run

Example: 33010
tagIdintegerrequired

Tag ID

Query
pageinteger>= 0

Number of results page of an endpoint with paginated results

Default 0
sizeinteger[ 100 .. 1000 ]
Default 100
sortBystring

For tag_loadtime_* lower and upper bounds are correspondingly inclusive and exclusive

Enum"tag_account""tag_instance_count""tag_request_size_average""tag_load_time_below_500""tag_load_time_from_500_to_1000""tag_load_time_from_1000_to_2000""tag_load_time_above_2000"
sortDescboolean

Controls sorting order

Default false
Bodyapplication/json

Filters applicable to Tag Inventory report

pageUrlobject
finalPageUrlobject
pageTitleobject
initialPageStatusCodeobject
finalPageStatusCodeobject
combinedPageStatusCodestring
  • broken - initial or final URL are broken,
  • good - initial URL is good or redirect and final URL is good
Enum"broken""good"
pageLoadTimeobject

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.

pageSizeobject

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.

redirectCountobject

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.

hasBrokenLinksboolean
pageUrlMatchingAuditFilterConfigurationboolean
tagLoadTimeobject

Should have min and/or max properties defined

tagAccountstring

Tag account

tagRequestSizeobject

Tag request size in bytes. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.

pageStatusCodestringDeprecated

good - 2xx, redirects - 3xx, broken - all others

Enum"good""redirects""broken"
tagStatusCodestringDeprecated

good - 2xx, redirects - 3xx, broken - all others

Enum"good""redirects""broken"
curl -i -X POST \
  'https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/tag-health/tags/{tagId}/accounts?page=0&size=100&sortBy=tag_account&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
    },
    "finalPageStatusCode": {
      "filterType": "specific",
      "negated": true
    },
    "combinedPageStatusCode": "broken",
    "pageLoadTime": {
      "min": 0,
      "max": 0
    },
    "pageSize": {
      "min": 0,
      "max": 0
    },
    "redirectCount": {
      "min": 0,
      "max": 0
    },
    "hasBrokenLinks": true,
    "pageUrlMatchingAuditFilterConfiguration": true,
    "pageStatusCode": "good",
    "tagLoadTime": {
      "min": 0,
      "max": 0
    },
    "tagStatusCode": "good",
    "tagAccount": "string",
    "tagRequestSize": {
      "min": 0,
      "max": 0
    }
  }'

Responses

Tag Health tag accounts data

Bodyapplication/json
metadataobjectrequired

Common metadata for iterable

metadata.​paginationobjectrequired
metadata.​pagination.​totalCountintegerrequired

Total number of items available from all result pages combined

metadata.​pagination.​totalPageCountintegerrequired

Total number of pages available

metadata.​pagination.​pageSizeintegerrequired

Page size - number of items per result page configured by size query parameter or default page size

metadata.​pagination.​currentPageSizeintegerrequired

Number of items in current result page

metadata.​pagination.​currentPageNumberintegerrequired

Current page number/ordinal

tagAccountsArray of objectsrequired
tagAccounts[].​tagIdintegerrequired

Tag ID

tagAccounts[].​tagNamestringrequired

Tag name

tagAccounts[].​tagCategoryIdintegerrequired

Tag category ID

tagAccounts[].​tagCategoryNamestringrequired

Name of a category of a tag

tagAccounts[].​tagInstanceCountintegerrequired

Number of tag requests

tagAccounts[].​tagRequestSizeAverageintegerrequired

Tag network request size, in bytes

tagAccounts[].​tagLoadTimeDistributionobjectrequired
tagAccounts[].​tagLoadTimeDistribution.​below500integerrequired

Number of tag requests with load time < 500 ms

tagAccounts[].​tagLoadTimeDistribution.​500to1000integerrequired

Number of tag requests with 500 ms ≤ load time < 1000 ms

tagAccounts[].​tagLoadTimeDistribution.​1000to2000integerrequired

Number of tag requests with 1000 ms ≤ load time < 2000 ms

tagAccounts[].​tagLoadTimeDistribution.​above2000integerrequired

Number of tag requests with 2000 ms ≤ load time

tagAccounts[].​tagStatusCodeDistributionobjectrequired

See StatusCodeEnum

tagAccounts[].​tagStatusCodeDistribution.​goodintegerrequired

Number of tag requests with "good" status code

tagAccounts[].​tagStatusCodeDistribution.​redirectintegerrequired

Number of tag requests with "redirect" status code

tagAccounts[].​tagStatusCodeDistribution.​brokenintegerrequired

Number of tag requests with "broken" status code

tagAccounts[].​tagAccountstringrequired

Tag account

Response
application/json
{ "metadata": { "pagination": { … } }, "tagAccounts": [ { … } ] }

Get Tag Health page list for specified audit run

Request

POST /v3/web-audits/{auditId}/runs/{runId}/reports/tag-health/pages
Security
API_Key
Path
auditIdinteger(int64)required

Unique identification number for web audit

Example: 107239
runIdinteger(int64)required

Unique identification number for web audit or journey run

Example: 33010
Query
pageinteger>= 0

Number of results page of an endpoint with paginated results

Default 0
sizeinteger[ 50 .. 1000 ]
Default 50
sortBystring
Enum"page_url""final_page_url""page_load_time""page_status_code""final_page_status_code""tag_load_time_average""tag_request_size_average""tag_instance_count""broken_tag_count"
sortDescboolean

Controls sorting order

Default false
Bodyapplication/json

Filters applicable to Tag Health report

pageUrlobject
finalPageUrlobject
pageTitleobject
initialPageStatusCodeobject
finalPageStatusCodeobject
combinedPageStatusCodestring
  • broken - initial or final URL are broken,
  • good - initial URL is good or redirect and final URL is good
Enum"broken""good"
pageLoadTimeobject

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.

pageSizeobject

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.

redirectCountobject

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.

hasBrokenLinksboolean
pageUrlMatchingAuditFilterConfigurationboolean
primaryTagsOnlyboolean

if true then return only pages/tags with primary tags else return all pages/tags

tagLoadTimeobject

Should have min and/or max properties defined

tagIdinteger

Tag ID

tagCategoryIdinteger

Tag category ID

tagVendorIdinteger

Tag vendor ID

tagAccountstring

Tag account

tagRequestSizeobject

Tag request size in bytes. Should have min and/or max properties defined. min is inclusive and max is exclusive. min should be less than max.

pageStatusCodestringDeprecated

good - 2xx, redirects - 3xx, broken - all others

Enum"good""redirects""broken"
tagStatusCodestringDeprecated

good - 2xx, redirects - 3xx, broken - all others

Enum"good""redirects""broken"
curl -i -X POST \
  'https://api.observepoint.com/v3/web-audits/107239/runs/33010/reports/tag-health/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
    },
    "finalPageStatusCode": {
      "filterType": "specific",
      "negated": true
    },
    "combinedPageStatusCode": "broken",
    "pageLoadTime": {
      "min": 0,
      "max": 0
    },
    "pageSize": {
      "min": 0,
      "max": 0
    },
    "redirectCount": {
      "min": 0,
      "max": 0
    },
    "hasBrokenLinks": true,
    "pageUrlMatchingAuditFilterConfiguration": true,
    "pageStatusCode": "good",
    "primaryTagsOnly": true,
    "tagLoadTime": {
      "min": 0,
      "max": 0
    },
    "tagStatusCode": "good",
    "tagId": 0,
    "tagCategoryId": 0,
    "tagVendorId": 0,
    "tagAccount": "string",
    "tagRequestSize": {
      "min": 0,
      "max": 0
    }
  }'

Responses

Tag Health pages data

Bodyapplication/json
metadataobjectrequired

Common metadata for iterable

metadata.​paginationobjectrequired
metadata.​pagination.​totalCountintegerrequired

Total number of items available from all result pages combined

metadata.​pagination.​totalPageCountintegerrequired

Total number of pages available

metadata.​pagination.​pageSizeintegerrequired

Page size - number of items per result page configured by size query parameter or default page size

metadata.​pagination.​currentPageSizeintegerrequired

Number of items in current result page

metadata.​pagination.​currentPageNumberintegerrequired

Current page number/ordinal

pagesArray of objectsrequired
pages[].​pageIdstringrequired
Example: "f9d32cc7cc2046d6decb145a80289287f5226323"
pages[].​pageUrlstring(url)required
Example: "https://example.com/about"
pages[].​pageLoadTimeintegerrequired

Time page took to load, in milliseconds

pages[].​pageStatusCodeintegerrequired

Page HTTP status code

pages[].​finalPageUrlstring(url)
Example: "https://example.com/about"
pages[].​finalPageStatusCodeinteger

Page HTTP status code

pages[].​filteredTagLoadTimeAverageintegerrequired

Tag load time, in milliseconds

Default 0
pages[].​filteredTagRequestSizeAverageintegerrequired

Tag network request size, in bytes

pages[].​filteredTagInstanceCountintegerrequired

Number of tag requests on a page passing all applied filters

pages[].​filteredBrokenTagCountintegerrequired

Number of broken tag requests on a page passing all applied filters

Response
application/json
{ "metadata": { "pagination": { … } }, "pages": [ { … } ] }

Tag Duplicates and Multiples Report

Tag Duplicates and Multiples report endpoints

Operations

Variable Inventory Report

Variable Inventory report endpoints

Operations

Browser Logs Report

Browser Logs report endpoints

Operations

File Changes Report

File changes report endpoints

Operations

Tag Privacy Report

Tag privacy report endpoints

Operations

Request Privacy Report

Request Privacy report endpoints

Operations

Exports Center

Access requested exports status/information

Operations

Scheduled Exports

Manage scheduled grid report data exports

Operations

Audit Run Export

Export audit run data

Operations

Web Journey Run Export

Export web journey run data

Operations

Manual Journey Run Export

Export manual journey run data

Operations

Alerts

Alert management and configuration

Operations

Account's Triggered Alerts

Account-level triggered alerts

Operations
Operations
Operations

Account Usage Alerts

Alerts related to account usage

Operations

Account Usage Export

Export account usage data

Operations

Notification Center

Find and manage email subscriptions

Operations

Email Inbox Messages

Get Email Inbox message details

Operations

Email Inbox Message Alerts

Email inbox message alerts

Operations