Api Keys endpoints
User endpoints
Export endpoints
Logs endpoints
Usage endpoints
Search endpoints
Export endpoints
Create a new export
POST
/
exports
curl --request POST \
--url https://api.eu.bronto.io/exports \
--header 'Content-Type: application/json' \
--header 'X-BRONTO-API-KEY: <api-key>' \
--data '{
"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"
}
}'
{
"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
Body
application/json
Response
201
application/json
Export created successfully
The response is of type object
.
curl --request POST \
--url https://api.eu.bronto.io/exports \
--header 'Content-Type: application/json' \
--header 'X-BRONTO-API-KEY: <api-key>' \
--data '{
"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"
}
}'
{
"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.