GET
/
lead-lists
curl --request GET \
  --url https://api.amplemarket.com/lead-lists \
  --header 'Authorization: Bearer <token>'
{
  "lead_lists": [
    {
      "id": "01952828-e592-7f9a-8f0b-75a0a5725ef3",
      "name": "Sample list 1",
      "status": "completed",
      "shared": false,
      "visible": true,
      "owner": "admin@example.com",
      "type": "linkedin",
      "created_at": "2025-02-21T10:58:43Z",
      "updated_at": "2025-02-21T10:58:43Z"
    }
  ],
  "_links": {
    "self": {
      "href": "/lead-lists?page[size]=20"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page[size]
string

Page size

page[after]
string

Page after

page[before]
string

Page before

status
string

Filter by lead list status

owner_id
string

Filter by lead list owner id

owner_email
string

Filter by lead list owner email

Response

200
application/vnd.amp+json
Successful
lead_lists
object[]