download
Download the results of a completed export job. Alias: dl.
bash
exportcomments download <guid> [options]
Options
ParameterTypeDescription
--jsonflagDownload raw JSON data instead of Excel/CSV -o, --output <path>stringOutput file path
Examples
Download formatted file (Excel/CSV):
bash
exportcomments download b4219d47-3138-5efd-9762-2ef9f9495084
Download raw JSON data:
bash
exportcomments download b4219d47-3138-5efd-9762-2ef9f9495084 --json
Save to a specific path:
bash
exportcomments download b4219d47-3138-5efd-9762-2ef9f9495084 -o ./exports/data.xlsx
Response (--json)200
json
{"ok": true,"data": [{"text": "Great video!","author": "user123","date": "2024-03-15T10:30:00Z","likes": 42}]}
Job must be completed
The download command only works for jobs with a done status. If the job is still in progress, use the status command with --wait first.
