Api Keys endpoints
User endpoints
Export endpoints
Logs endpoints
Usage endpoints
Search endpoints
Retrieve a list of exports
curl --request GET \
--url https://api.eu.bronto.io/exports \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"exports": [
{
"export_id": "<string>",
"org_id": "<string>",
"progress": 123,
"status": "CREATED",
"bytes": 123,
"events": 123,
"location": "<string>",
"search_details": {
"from": "550e8400-e29b-41d4-a716-446655440000:297bb888-83b1-44e0-8ab6-47879f1275a2",
"time_range": "Last 3 weeks",
"timeRange": "Last 3 weeks",
"fromTs": 1709251200000,
"from_ts": 1709251200000,
"toTs": 1711390455601,
"to_ts": 1711390455601,
"where": "ip=10.0.0.1"
},
"created_at": 123,
"modified_at": 123
}
]
}
Authorizations
Response
The unique identifier for the export.
The ID of the organization associated with the export.
The progress percentage of the export.
The current status of the export.
CREATED
, IN_PROGRESS
, COMPLETE
The size of the export in bytes.
The number of events in the export.
The location where the export is stored.
The ids of the logs to search separated by a colon (:).
"550e8400-e29b-41d4-a716-446655440000:297bb888-83b1-44e0-8ab6-47879f1275a2"
The starting time (unix time in milliseconds) for which to query data. Must be used together with to_ts
. This parameter is not to be used when using time_range
.
1709251200000
The ending time (unix time in milliseconds) for which to query data. Must be used together with from_ts
. This parameter is incompatible with time_range
.
1711390455601
The where parameter is used to filter the results of your query. See https://docs.bronto.io/core-features/log-search/query-syntax for more details The filter can combine multiple terms using AND, OR, NOT.
"ip=10.0.0.1"
The relative time range for which to query data. Time range supported is from milliseconds to years. For an exact range, use from_ts
and to_ts
instead.
"Last 3 weeks"
The relative time range for which to query data. Time range supported is from milliseconds to years. For an exact range, use from_ts
and to_ts
instead.
"Last 3 weeks"
The starting time (unix time in milliseconds) for which to query data. Must be used together with to_ts
. This parameter is not to be used when using time_range
.
1709251200000
The ending time (unix time in milliseconds) for which to query data. Must be used together with from_ts
. This parameter is incompatible with time_range
.
1711390455601
The timestamp when the export was created.
The timestamp when the export was last modified.
curl --request GET \
--url https://api.eu.bronto.io/exports \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"exports": [
{
"export_id": "<string>",
"org_id": "<string>",
"progress": 123,
"status": "CREATED",
"bytes": 123,
"events": 123,
"location": "<string>",
"search_details": {
"from": "550e8400-e29b-41d4-a716-446655440000:297bb888-83b1-44e0-8ab6-47879f1275a2",
"time_range": "Last 3 weeks",
"timeRange": "Last 3 weeks",
"fromTs": 1709251200000,
"from_ts": 1709251200000,
"toTs": 1711390455601,
"to_ts": 1711390455601,
"where": "ip=10.0.0.1"
},
"created_at": 123,
"modified_at": 123
}
]
}