POST
/
lead-lists
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": "0197abd8-ad49-7d33-9004-57cba9264175",
"object": "lead_list",
"name": "my list",
"status": "queued",
"shared": true,
"visible": false,
"owner": "admin@example.com",
"type": "linkedin",
"created_at": "2025-06-26T10:46:33Z",
"updated_at": "2025-06-26T10:46:33Z",
"options": {
"reveal_phone_numbers": false,
"validate_email": true,
"enrich": true
},
"leads": [],
"_links": {
"self": {
"href": "/lead-lists/0197abd8-ad49-7d33-9004-57cba9264175"
}
}
}

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

The body is of type object.

Response

202
application/json

Lead List accepted

The response is of type object.