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 '{
  "name": "<string>",
  "shared": true,
  "visible": true,
  "owner": "jsmith@example.com",
  "type": "linkedin",
  "options": {
    "reveal_phone_numbers": true,
    "validate_email": true,
    "enrich": true
  },
  "leads": [
    {
      "linkedin_url": "<string>",
      "email": "jsmith@example.com",
      "title": "<string>",
      "company_name": "<string>",
      "company_domain": "<string>"
    }
  ]
}'
{
"id": "0198f652-8acb-784c-87f1-5bdeac1c0da1",
"object": "lead_list",
"name": "my list",
"status": "queued",
"shared": true,
"visible": false,
"owner": "admin@example.com",
"type": "linkedin",
"created_at": "2025-08-29T14:54:21Z",
"updated_at": "2025-08-29T14:54:21Z",
"options": {
"reveal_phone_numbers": false,
"validate_email": true,
"enrich": true
},
"leads": [],
"_links": {
"self": {
"href": "/lead-lists/0198f652-8acb-784c-87f1-5bdeac1c0da1"
}
}
}

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