Leads
Create Lead
Create a new lead in your workspace.
POST
Request Body
Email address of the lead. Must be unique within the workspace.
First name.
Last name.
Company name.
Job title.
Phone number.
LinkedIn profile URL.
Website URL.
List of tag names to apply to the lead (e.g.,
["enterprise", "conference"]).Custom key-value fields for additional data.
Freeform notes about the lead.
Source tracking (e.g.,
api, csv_import, manual).Initial status:
active, bounced, unsubscribed, or replied.Response
Returns the created lead object with a201 status code.
Errors
| Status | Description |
|---|---|
409 | A lead with this email already exists in the workspace |
422 | Invalid request body (e.g., invalid email format) |
429 | Rate limit exceeded — see Rate Limit section below |
Rate Limit
This endpoint is subject to the v1 API rate limit:- 100 requests per minute, per API key (fixed 60-second window).
- Every response includes
X-RateLimit-Limit,X-RateLimit-Remaining, andX-RateLimit-Reset(unix epoch seconds). - A
429response includes aRetry-Afterheader (seconds until the bucket resets).
Retry-After, exponential backoff, monitoring X-RateLimit-Remaining), see Rate Limiting.