Go to App

List Export Jobs

GET/api/v3/jobs

Retrieve a paginated list of export jobs for the authenticated user, ordered by creation date (newest first).

Query Parameters

ParameterTypeDescription

pageintegerPage number (default: 1) limitintegerItems per page (default: 30, max: 30)

bash
curl "https://exportcomments.com/api/v3/jobs?page=1&limit=10" \
-H "X-AUTH-TOKEN: your-api-key"
Response200
json
[
{
"id": 12345,
"guid": "b4219d47-3138-5efd-9762-2ef9f9495084",
"status": "done",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"options": {
"limit": 500,
"replies": true
},
"locked": false,
"json_url": "https://exportcomments.com/exports/12345.json",
"download_link": "https://exportcomments.com/exports/12345.xlsx"
},
{
"id": 12344,
"guid": "a3118c36-2027-4dfc-8651-1de8e8384973",
"status": "progress",
"url": "https://www.instagram.com/p/ABC123/",
"options": {},
"locked": false,
"json_url": null,
"download_link": null
}
]
💡
Pagination

Iterate through pages until the response array contains fewer items than the requested limit. See Pagination for details.