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

X-BRONTO-API-KEY
string
header
required

Path Parameters

exportId
string
required

The unique identifier of the export to retrieve

Response

200
application/json
Export retrieved successfully
export_id
string
required

The unique identifier for the export.

org_id
string
required

The ID of the organization associated with the export.

progress
integer
required

The progress percentage of the export.

status
enum<string>
required

The current status of the export.

Available options:
CREATED,
IN_PROGRESS,
COMPLETE
bytes
integer
required

The size of the export in bytes.

events
integer
required

The number of events in the export.

location
string
required

The location where the export is stored.

search_details
object
required
created_at
integer

The timestamp when the export was created.

modified_at
integer

The timestamp when the export was last modified.