v1
latestOpenAPI 3.0.02026-07-2455104.8 MBQuery
List query exports
Get a list of recent query exports and their status. Possible statuses are success, failed, running and pending. If status is success, then we also show the download link.
get/api/v1/analytics/query/export
Response
Query execution response
Example response
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "pending",
"query": "SELECT * FROM users",
"url": "https://example.com",
"error": "SQL statement is invalid",
"exportFormat": "txt",
"createdAt": "2023-01-01T00:00:00+00:00",
"updatedAt": "2023-01-01T00:00:00+00:00"
}
]
}