Skip to main content
POST
/
lead-lists
Create Lead List
curl --request POST \
  --url https://api.amplemarket.com/lead-lists \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "shared": true,
  "owner": "[email protected]",
  "type": "linkedin",
  "leads": [
    {
      "linkedin_url": "<string>",
      "email": "[email protected]",
      "title": "<string>",
      "company_name": "<string>",
      "company_domain": "<string>"
    }
  ],
  "name": "<string>",
  "visible": true,
  "options": {
    "reveal_phone_numbers": true,
    "validate_email": true,
    "enrich": true
  }
}
'
{
  "id": "019b32ae-7e97-7299-aba2-dbc3c2aa55eb",
  "object": "lead_list",
  "name": "my list",
  "status": "queued",
  "shared": true,
  "visible": false,
  "owner": "[email protected]",
  "type": "linkedin",
  "created_at": "2025-12-18T18:17:35Z",
  "updated_at": "2025-12-18T18:17:35Z",
  "options": {
    "reveal_phone_numbers": false,
    "validate_email": true,
    "enrich": true
  },
  "leads": [],
  "_links": {
    "self": {
      "href": "/lead-lists/019b32ae-7e97-7299-aba2-dbc3c2aa55eb"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Leads to create the list with

shared
boolean
required
owner
string<email>
required
type
enum<string>
required
Available options:
linkedin,
email,
titles_and_company
leads
object[]
required

You may send up to 10000 leads at a time.

Maximum array length: 10000
name
string
visible
boolean
options
object

Response

Lead List accepted

id
string<uuid>
required
object
enum<string>
required
Available options:
lead_list
name
string
required
status
enum<string>
required
Available options:
queued,
processing,
completed
shared
boolean
required
visible
boolean
required
owner
string<email>
required
type
enum<string>
required
Available options:
linkedin,
email,
title_and_company,
name_and_company,
salesforce,
hubspot,
person,
adaptive
leads
object[]
required
created_at
string<date_time>
updated_at
string<date_time>
options
object
_errors
object[]