Go to App

list

List all export jobs for your account with pagination. Alias: ls.

bash
exportcomments list [options]

Options

ParameterTypeDescription

--page <n>numberPage number (default: 1) --limit <n>numberItems per page (default: 20)

Examples

List recent jobs:

bash
exportcomments list

With pagination:

bash
exportcomments list --page 2 --limit 10
Response200
json
{
"ok": true,
"data": [
{
"id": 12345,
"guid": "b4219d47-3138-5efd-9762-2ef9f9495084",
"status": "done",
"url": "https://www.instagram.com/p/ABC123/"
},
{
"id": 12344,
"guid": "a3118c36-2027-4dfc-8651-1de8e8384073",
"status": "progress",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
}
]
}