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": "jsmith@example.com",
"leads": [
{
"linkedin_url": "<string>",
"email": "jsmith@example.com",
"title": "<string>",
"company_name": "<string>",
"company_domain": "<string>",
"phone_numbers": [
"<string>"
],
"context": {}
}
],
"name": "<string>",
"visible": true,
"options": {
"reveal_phone_numbers": true,
"validate_email": true,
"enrich": true
}
}
'import requests
url = "https://api.amplemarket.com/lead-lists"
payload = {
"shared": True,
"owner": "jsmith@example.com",
"leads": [
{
"linkedin_url": "<string>",
"email": "jsmith@example.com",
"title": "<string>",
"company_name": "<string>",
"company_domain": "<string>",
"phone_numbers": ["<string>"],
"context": {}
}
],
"name": "<string>",
"visible": True,
"options": {
"reveal_phone_numbers": True,
"validate_email": True,
"enrich": True
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
shared: true,
owner: 'jsmith@example.com',
leads: [
{
linkedin_url: '<string>',
email: 'jsmith@example.com',
title: '<string>',
company_name: '<string>',
company_domain: '<string>',
phone_numbers: ['<string>'],
context: {}
}
],
name: '<string>',
visible: true,
options: {reveal_phone_numbers: true, validate_email: true, enrich: true}
})
};
fetch('https://api.amplemarket.com/lead-lists', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.amplemarket.com/lead-lists",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'shared' => true,
'owner' => 'jsmith@example.com',
'leads' => [
[
'linkedin_url' => '<string>',
'email' => 'jsmith@example.com',
'title' => '<string>',
'company_name' => '<string>',
'company_domain' => '<string>',
'phone_numbers' => [
'<string>'
],
'context' => [
]
]
],
'name' => '<string>',
'visible' => true,
'options' => [
'reveal_phone_numbers' => true,
'validate_email' => true,
'enrich' => true
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.amplemarket.com/lead-lists"
payload := strings.NewReader("{\n \"shared\": true,\n \"owner\": \"jsmith@example.com\",\n \"leads\": [\n {\n \"linkedin_url\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"phone_numbers\": [\n \"<string>\"\n ],\n \"context\": {}\n }\n ],\n \"name\": \"<string>\",\n \"visible\": true,\n \"options\": {\n \"reveal_phone_numbers\": true,\n \"validate_email\": true,\n \"enrich\": true\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.amplemarket.com/lead-lists")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"shared\": true,\n \"owner\": \"jsmith@example.com\",\n \"leads\": [\n {\n \"linkedin_url\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"phone_numbers\": [\n \"<string>\"\n ],\n \"context\": {}\n }\n ],\n \"name\": \"<string>\",\n \"visible\": true,\n \"options\": {\n \"reveal_phone_numbers\": true,\n \"validate_email\": true,\n \"enrich\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amplemarket.com/lead-lists")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"shared\": true,\n \"owner\": \"jsmith@example.com\",\n \"leads\": [\n {\n \"linkedin_url\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"phone_numbers\": [\n \"<string>\"\n ],\n \"context\": {}\n }\n ],\n \"name\": \"<string>\",\n \"visible\": true,\n \"options\": {\n \"reveal_phone_numbers\": true,\n \"validate_email\": true,\n \"enrich\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "019f3cf5-8faf-7724-87ca-de34d6f14746",
"object": "lead_list",
"name": "my list",
"status": "queued",
"url": "https://localhost:3000/dashboard/lead_lists/019f3cf5-8faf-7724-87ca-de34d6f14746",
"shared": true,
"visible": false,
"owner": "admin@example.com",
"type": "linkedin",
"created_at": "2026-07-07T14:22:33Z",
"updated_at": "2026-07-07T14:22:33Z",
"options": {
"reveal_phone_numbers": false,
"validate_email": true,
"enrich": true
},
"leads": [],
"_links": {
"self": {
"href": "/lead-lists/019f3cf5-8faf-7724-87ca-de34d6f14746"
}
}
}Lead List
Create Lead List
Create Lead List
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": "jsmith@example.com",
"leads": [
{
"linkedin_url": "<string>",
"email": "jsmith@example.com",
"title": "<string>",
"company_name": "<string>",
"company_domain": "<string>",
"phone_numbers": [
"<string>"
],
"context": {}
}
],
"name": "<string>",
"visible": true,
"options": {
"reveal_phone_numbers": true,
"validate_email": true,
"enrich": true
}
}
'import requests
url = "https://api.amplemarket.com/lead-lists"
payload = {
"shared": True,
"owner": "jsmith@example.com",
"leads": [
{
"linkedin_url": "<string>",
"email": "jsmith@example.com",
"title": "<string>",
"company_name": "<string>",
"company_domain": "<string>",
"phone_numbers": ["<string>"],
"context": {}
}
],
"name": "<string>",
"visible": True,
"options": {
"reveal_phone_numbers": True,
"validate_email": True,
"enrich": True
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
shared: true,
owner: 'jsmith@example.com',
leads: [
{
linkedin_url: '<string>',
email: 'jsmith@example.com',
title: '<string>',
company_name: '<string>',
company_domain: '<string>',
phone_numbers: ['<string>'],
context: {}
}
],
name: '<string>',
visible: true,
options: {reveal_phone_numbers: true, validate_email: true, enrich: true}
})
};
fetch('https://api.amplemarket.com/lead-lists', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.amplemarket.com/lead-lists",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'shared' => true,
'owner' => 'jsmith@example.com',
'leads' => [
[
'linkedin_url' => '<string>',
'email' => 'jsmith@example.com',
'title' => '<string>',
'company_name' => '<string>',
'company_domain' => '<string>',
'phone_numbers' => [
'<string>'
],
'context' => [
]
]
],
'name' => '<string>',
'visible' => true,
'options' => [
'reveal_phone_numbers' => true,
'validate_email' => true,
'enrich' => true
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.amplemarket.com/lead-lists"
payload := strings.NewReader("{\n \"shared\": true,\n \"owner\": \"jsmith@example.com\",\n \"leads\": [\n {\n \"linkedin_url\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"phone_numbers\": [\n \"<string>\"\n ],\n \"context\": {}\n }\n ],\n \"name\": \"<string>\",\n \"visible\": true,\n \"options\": {\n \"reveal_phone_numbers\": true,\n \"validate_email\": true,\n \"enrich\": true\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.amplemarket.com/lead-lists")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"shared\": true,\n \"owner\": \"jsmith@example.com\",\n \"leads\": [\n {\n \"linkedin_url\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"phone_numbers\": [\n \"<string>\"\n ],\n \"context\": {}\n }\n ],\n \"name\": \"<string>\",\n \"visible\": true,\n \"options\": {\n \"reveal_phone_numbers\": true,\n \"validate_email\": true,\n \"enrich\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.amplemarket.com/lead-lists")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"shared\": true,\n \"owner\": \"jsmith@example.com\",\n \"leads\": [\n {\n \"linkedin_url\": \"<string>\",\n \"email\": \"jsmith@example.com\",\n \"title\": \"<string>\",\n \"company_name\": \"<string>\",\n \"company_domain\": \"<string>\",\n \"phone_numbers\": [\n \"<string>\"\n ],\n \"context\": {}\n }\n ],\n \"name\": \"<string>\",\n \"visible\": true,\n \"options\": {\n \"reveal_phone_numbers\": true,\n \"validate_email\": true,\n \"enrich\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "019f3cf5-8faf-7724-87ca-de34d6f14746",
"object": "lead_list",
"name": "my list",
"status": "queued",
"url": "https://localhost:3000/dashboard/lead_lists/019f3cf5-8faf-7724-87ca-de34d6f14746",
"shared": true,
"visible": false,
"owner": "admin@example.com",
"type": "linkedin",
"created_at": "2026-07-07T14:22:33Z",
"updated_at": "2026-07-07T14:22:33Z",
"options": {
"reveal_phone_numbers": false,
"validate_email": true,
"enrich": true
},
"leads": [],
"_links": {
"self": {
"href": "/lead-lists/019f3cf5-8faf-7724-87ca-de34d6f14746"
}
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Leads to create the list with
Available options:
linkedin, email, titles_and_company You may send up to 10000 leads at a time.
Maximum array length:
10000Show child attributes
Show child attributes
Show child attributes
Show child attributes
Response
Lead List accepted
Available options:
lead_list Available options:
queued, processing, completed Available options:
linkedin, email, title_and_company, name_and_company, salesforce, hubspot, person, adaptive Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
⌘I