Skip to main content
POST
/
api
/
v2
/
lead-lists
Create lead list
curl --request POST \
  --url https://api.instantly.ai/api/v2/lead-lists \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My Lead List"
}
'
{
  "id": "019dc79a-8188-7b0b-8f9f-3e2e12be141b",
  "organization_id": "019dc79a-8188-7b0b-8f9f-3e2f0ab87d85",
  "name": "My Lead List",
  "timestamp_created": "2026-04-26T02:24:44.936Z",
  "has_enrichment_task": false,
  "owned_by": "019dc79a-8188-7b0b-8f9f-3e305c9d2997"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The Lead List to create

The Lead List to create

name
string
required

Name of the lead list

Example:

"My Lead List"

has_enrichment_task
boolean | null

Whether this list runs the enrichment process on every added lead or not

Example:

false

owned_by
string<uuid> | null

User ID of the owner of this lead list. Defaults to the user that created the list

Example:

"019dc79a-8188-7b0b-8f9f-3e305c9d2997"

Response

The Lead List

A list used to store leads

id
string<uuid>
required

Unique identifier for the lead list

Example:

"019dc79a-8188-7b0b-8f9f-3e2e12be141b"

organization_id
string<uuid>
required

Organization ID that owns this lead list

Example:

"019dc79a-8188-7b0b-8f9f-3e2f0ab87d85"

name
string
required

Name of the lead list

Example:

"My Lead List"

timestamp_created
string<date-time>
required

Timestamp when the lead list was created

Example:

"2026-04-26T02:24:44.936Z"

has_enrichment_task
null | boolean

Whether this list runs the enrichment process on every added lead or not

Example:

false

owned_by
null | string<uuid>

User ID of the owner of this lead list. Defaults to the user that created the list

Example:

"019dc79a-8188-7b0b-8f9f-3e305c9d2997"