ArgorantDocs

Export a saved list

posthttps://app.argorant.com/api/lists/{list_id}/export
POST
/api/lists/{list_id}/export

Create an async export from a saved list. Optionally skip records already exported, so you only pay to verify and download net-new contacts.

Export is billed and gated by plan and remaining credits.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

list_id*integer

The saved list id.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

Shell
curl -X POST "https://app.argorant.com/api/lists/312/export" \  -H "Content-Type: application/json" \  -d '{    "limit": 5000,    "exclude_previously_exported": true,    "email_when_done": false  }'
JSON
{  "job_id": 84260,  "status": "queued"}