Api Keys endpoints
User endpoints
Export endpoints
Logs endpoints
Usage endpoints
Search endpoints
Export endpoints
Retrieve an export by ID
GET
/
exports
/
{exportId}
curl --request GET \
--url https://api.eu.bronto.io/exports/{exportId} \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"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
Path Parameters
The unique identifier of the export to retrieve
Response
200
application/json
Export retrieved successfully
The response is of type object
.
curl --request GET \
--url https://api.eu.bronto.io/exports/{exportId} \
--header 'X-BRONTO-API-KEY: <api-key>'
{
"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
}
Assistant
Responses are generated using AI and may contain mistakes.