ArgorantDocs

List exports

gethttps://app.argorant.com/api/exports
GET
/api/exports

List recent export jobs for the workspace, newest first, with status and row counts.

Authorization

BearerAuth
AuthorizationBearer <token>

Your API key from app.argorant.com/profile, sent as Authorization: Bearer <key>.

In: header

Query Parameters

limit?integer

Max jobs to return (1–200, default 50).

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/exports?limit=50"
JSON
{  "exports": [    {      "id": 84213,      "status": "done",      "rows": 5000,      "verified": 4810,      "created_at": "2026-06-09T09:14:02Z"    },    {      "id": 84090,      "status": "processing",      "rows": 0,      "total": 12000    }  ]}