ArgorantDocs

List enrolled leads

gethttps://app.argorant.com/api/v1/campaigns/{campaign_id}/leads
GET
/api/v1/campaigns/{campaign_id}/leads

The people in a campaign with their status: pending (verification running), queued, active, replied, bounced, completed, suppressed. Paginate with limit/offset, filter by status, search name, email or company with q.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

campaign_id*string

Campaign id.

Query Parameters

status?string

One lead status.

q?string

Search text.

limit?integer

Rows per page (max 500).

offset?integer

Rows to skip.

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/v1/campaigns/7f3a2c1e-9b4d-4e8a-a1c2-5d6e7f8a9b0c/leads?status=replied&limit=50&offset=0"
JSON
{  "total": 1188,  "limit": 50,  "offset": 0,  "leads": [    {      "id": "0c9d8e7f-6a5b-4c3d-8e2f-1a0b9c8d7e6f",      "email": "jane.doe@example-acme.com",      "first_name": "Jane",      "last_name": "Doe",      "company": "Acme",      "title": "CFO",      "status": "replied",      "current_step": 2,      "next_send_at": null,      "last_sent_at": "2026-09-18T09:12:00+00:00",      "replied_at": "2026-09-18T14:03:11+00:00",      "bounced_at": null,      "failure_reason": null,      "created_at": "2026-09-15T10:00:00+00:00"    }  ]}