Skip to main content
POST
/
v2
/
leads
/
bulk
Bulk Create Leads
curl --request POST \
  --url https://api.opennous.cloud/v2/leads/bulk \
  --header 'Content-Type: application/json' \
  --data '
{
  "list_id": "<string>",
  "leads": [
    {}
  ],
  "importDuplicates": true
}
'
curl -X POST https://api.opennous.cloud/v2/leads/bulk \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "list_id": "LIST_UUID",
    "leads": [
      { "email": "a@acme.com", "name": "A" },
      { "email": "b@acme.com", "name": "B" }
    ]
  }'

Body

list_id
string
required
UUID of the destination lead list.
leads
array
required
Array of lead objects. Each row takes the same shape as the single-create body (minus list_id).
importDuplicates
boolean
default:"false"
Force-insert even if the email or LinkedIn URL is already in the workspace.

Response

{ "inserted": 2, "skipped": 0, "duplicate_skipped": 0 }