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": "0196b4f9-4a8c-7c0d-b22b-dd9d80548daa",
  "object": "lead_list",
  "name": "my list",
  "status": "queued",
  "shared": true,
  "visible": false,
  "owner": "admin@example.com",
  "type": "linkedin",
  "created_at": "2025-05-09T12:15:58Z",
  "updated_at": "2025-05-09T12:15:58Z",
  "options": {
    "reveal_phone_numbers": false,
    "validate_email": true,
    "enrich": true
  },
  "leads": [],
  "_links": {
    "self": {
      "href": "/lead-lists/0196b4f9-4a8c-7c0d-b22b-dd9d80548daa"
    }
  }
}

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.