get/api/v2/reports/csv-exports
List CSV exports.
Returns generated local CSV export artifacts for the active project.
Requires bearer API keyParameters
| Name | In | Description |
|---|---|---|
| X-Project-Id | header | Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.string |
| page | query | No description provided.integer |
| size | query | No description provided.integer |
| tableName | query | No description provided.string |
| status | query | No description provided.string |
| query | query | Filter by table name or date range.string |
Responses
200
application/jsonPaginated CSV exports.
{
"type": "object",
"additionalProperties": false,
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"tableName": {
"type": "string"
},
"status": {
"type": "string"
},
"dateRange": {
"type": "string"
},
"filters": {
"type": "object",
"additionalProperties": true
},
"filePath": {
"type": "string",
"nullable": true
},
"requestedById": {
"type": "string",
"nullable": true
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"completedAt": {
"type": "string",
"format": "date-time",
"nullable": true
},
"downloadUrl": {
"type": "string",
"nullable": true
}
}
}
},
"total": {
"type": "integer"
},
"page": {
"type": "integer"
},
"size": {
"type": "integer"
},
"totalPages": {
"type": "integer"
}
},
"required": [
"items",
"total",
"page",
"size",
"totalPages"
]
}Try it
Send this request to the local WatchLLM REST handler. Use a key from /workspace/api; organization keys can include X-Project-Id only when the endpoint documents that header.