Go to App

status

Check the current status of an export job by its GUID. Alias: check.

bash
exportcomments status <guid> [options]

Options

ParameterTypeDescription

--waitflagWait for the job to complete --realtimeflagUse WebSocket for real-time status updates --wait-interval <ms>numberCustom polling interval in milliseconds --wait-timeout <ms>numberCustom timeout in milliseconds (default: 600000)

Examples

Check status once:

bash
exportcomments status b4219d47-3138-5efd-9762-2ef9f9495084

Wait for completion:

bash
exportcomments status b4219d47-3138-5efd-9762-2ef9f9495084 --wait
Response200
json
{
"ok": true,
"data": {
"id": 12345,
"guid": "b4219d47-3138-5efd-9762-2ef9f9495084",
"status": "done",
"url": "https://www.instagram.com/p/ABC123/",
"totalComments": 342,
"exportedComments": 342,
"downloadUrl": "https://exportcomments.com/api/v3/job/b4219d47-.../download"
}
}