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.
V3 API
https://api.observepoint.com/
Controls sorting
aggregate filter for different export types and item types
- ObservePoint Production API
https://api.observepoint.com/v3/exports
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/exports?page=0&size=20&sortBy=date_exported&sortDesc=false&exportedItemType=audit&search=my+audit&requestedByUserId=123&exportIds=0' \
-H 'Authorization: YOUR_API_KEY_HERE'
Export Center exports
Common metadata for iterable
Total number of items available from all result pages combined
Page size - number of items per result page configured by size
query parameter or default page size
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
Enumeration of all high-level export types
Name of an item this export has been executed for, see ItemType
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
Specific export type, for example AuditRun_ExportTypeEnum for audits
Export file download link
{ "metadata": { "pagination": { … } }, "exports": [ { … } ] }
- ObservePoint Production API
https://api.observepoint.com/v3/exports/{exportUuid}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.observepoint.com/v3/exports/{exportUuid}' \
-H 'Authorization: YOUR_API_KEY_HERE'