Skip to main content
GET
/
api
/
v2
/
lead-lists
List lead list
curl --request GET \
  --url https://api.instantly.ai/api/v2/lead-lists \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "019d9c5f-965a-7483-a46c-aaf55c7c3b5d",
      "organization_id": "019d9c5f-965a-7483-a46c-aaf6badc58f2",
      "name": "My Lead List",
      "timestamp_created": "2026-04-17T16:56:43.354Z",
      "has_enrichment_task": false,
      "owned_by": "019d9c5f-965a-7483-a46c-aaf7b9fbc2fc"
    }
  ],
  "next_starting_after": "019d9c5f-ccd3-7487-9ee4-becf3c536888"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

The number of items to return

Required range: 1 <= x <= 100
Example:

10

starting_after
string

The starting after timestamp to filter lead lists by.

Example:

"2025-03-07T00:00:00.000Z"

has_enrichment_task
boolean

Whether the list has an enrichment task.

Example:

true

The search query to filter lead lists by.

Example:

"Summer 2025 List"

Response

The list of Lead List

items
Lead List · object[]
required

The list of Lead List

next_starting_after
string

The filter for getting the next items after this one, this could either be a UUID, a timestamp, on an email depending on the specific API

Example:

"019d9c5f-ccd3-7487-9ee4-becf3c536888"