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": "019ae9a7-8efe-70f2-a744-2f6994cf71f6",
"object": "lead_list",
"name": "my list",
"status": "queued",
"shared": true,
"visible": false,
"owner": "[email protected]",
"type": "linkedin",
"created_at": "2025-12-04T13:57:43Z",
"updated_at": "2025-12-04T13:57:43Z",
"options": {
"reveal_phone_numbers": false,
"validate_email": true,
"enrich": true
},
"leads": [],
"_links": {
"self": {
"href": "/lead-lists/019ae9a7-8efe-70f2-a744-2f6994cf71f6"
}
}
}

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[]