Export Run Result
Method: POST
Endpoint: /api/v1/run/result/export
Send the request body with Content-Type: application/json.
Try it
Section titled “Try it”POST
/api/v1/run/result/exportExport run resultsRequired
Stored only in this browser tab. Sent only to https://openapi.coreclaw.com.
BodyRequiredapplication/json
FieldTypeRequiredDescription
run_slugstringyesRun slug whose results should be exported.filter_keysstring[]yesOptional list of field keys to keep in the export. Use `[]` to export all fields.formatenum (2)yesExport file format.Request body (JSON)
Request Example
Section titled “Request Example”{ "run_slug": "YOUR_RUN_SLUG", "filter_keys": [], "format": "csv"}Parameters
Section titled “Parameters”| Parameter | Example | Type | Required | Description |
|---|---|---|---|---|
| run_slug | YOUR_RUN_SLUG | String | Yes | Unique run identifier |
| filter_keys | [] | String[] | Yes | Fields to export. Use [] to export all fields |
| format | csv | String | Yes | Export format: csv or json |
Response Example
Section titled “Response Example”{ "code": 0, "message": "success", "data": { "download_url": "https://..." }}Response Fields
Section titled “Response Fields”| Parameter | Example | Type | Description |
|---|---|---|---|
| code | 0 | Integer | Global status code |
| message | success | String | Response message |
| data | - | Object | Response payload |
| download_url | - | String | Download URL for the export |