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 usage trends for rolling week, for specified item type
V3 API
Non-empty array of data sources. Usage for selected data sources only will be shown
Non-empty array of user IDs. Matches data sources that have been created by any of the specified users
non-empty array of folders with domains (subfolders), items from which will be included in response
Non-empty array of labels present on an item. Matches data sources that have all specified labels
Non-empty array of frequency names. Matches data sources that have any of the specified frequencies
- ObservePoint Production APIhttps://api.observepoint.com/v3/usage/{itemType}/trends
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.observepoint.com/v3/usage/{itemType}/trends' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"dataSources": [
107239
],
"dataSourceCreators": [
123
],
"dataSourceFolders": [
{
"folderId": 123,
"domains": [
123
]
}
],
"dataSourceLabels": [
223
],
"runFrequencies": [
"paused"
],
"contractTerm": {
"startDateInclusive": "2019-08-24",
"endDateInclusive": "2019-08-24"
}
}'Usage trends
Represents all past months
filtered property can be omitted if filters were not applied
Represents future months, with projected values
Duplicates AccountUsageV2_ProjectedUsage, but includes total and filtered values for each estimate
filtered property can be omitted if filters were not applied
filtered property can be omitted if filters were not applied
Duplicates AccountUsageV2_ProjectedUsage, but includes total and filtered values for each estimate
filtered property can be omitted if filters were not applied
filtered property can be omitted if filters were not applied
Limit of pages scanned (for audits) or runs completed (for web journeys) for the contract term
{ "pastPeriods": [ { … } ], "currentPeriod": { "startDateInclusive": "2019-08-24", "endDateExclusive": "2019-08-24", "periodTotal": { … }, "cumulativeTotal": { … }, "periodProjectedTotal": { … }, "cumulativeProjectedTotal": { … } }, "futurePeriods": [ { … } ], "termLimit": 0, "limitNoteType": "UNLIMITED", "monthlyPacing": 0 }
- ObservePoint Production APIhttps://api.observepoint.com/v3/usage/{itemType}/daily-trends
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/usage/{itemType}/daily-trends' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "dailyUsageItems": [ { … } ] }