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": "01985a67-cd24-7950-be78-6a76a8ec7402",
"object": "lead_list",
"name": "my list",
"status": "queued",
"shared": true,
"visible": false,
"owner": "admin@example.com",
"type": "linkedin",
"created_at": "2025-07-30T08:16:48Z",
"updated_at": "2025-07-30T08:16:48Z",
"options": {
"reveal_phone_numbers": false,
"validate_email": true,
"enrich": true
},
"leads": [],
"_links": {
"self": {
"href": "/lead-lists/01985a67-cd24-7950-be78-6a76a8ec7402"
}
}
}
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": "01985a67-cd24-7950-be78-6a76a8ec7402",
"object": "lead_list",
"name": "my list",
"status": "queued",
"shared": true,
"visible": false,
"owner": "admin@example.com",
"type": "linkedin",
"created_at": "2025-07-30T08:16:48Z",
"updated_at": "2025-07-30T08:16:48Z",
"options": {
"reveal_phone_numbers": false,
"validate_email": true,
"enrich": true
},
"leads": [],
"_links": {
"self": {
"href": "/lead-lists/01985a67-cd24-7950-be78-6a76a8ec7402"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Leads to create the list with
The body is of type object
.
Lead List accepted
The response is of type object
.
Was this page helpful?