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": "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

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
url
string
required
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[]