| Enum Value | Description |
|---|---|
| move-leads | Move Leads |
| import-leads | Import Leads |
| export-leads | Export Leads |
| update-warmup-accounts | Update Warmup Accounts |
| rename-variable | Rename Variable |
The entire API V2 documentation is interactive and can be tested here. To the right side of every endpoint you will see a box with an example request. You can click on the "Try it" button to send a request to the server right from the docs. You will need to provide an API key by clicking the ApiKeyAuth_token blue text.
https://api.instantly.ai/
https://developer.instantly.ai/_mock/api/v2/
List of emails to enable warmup accounts for. The emails should be attached to accounts in your workspace.
List of emails to exclude when include_all_emails is true.
Optional filter to apply when include_all_emails is true. Can contain tag_id or other filter criteria.
https://api.instantly.ai/api/v2/accounts/warmup/enable
https://developer.instantly.ai/_mock/api/v2/api/v2/accounts/warmup/enable
curl -i -X POST \
https://api.instantly.ai/api/v2/accounts/warmup/enable \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{}'The requested Background Job
Unique identifier for the background job
Workspace ID
Type of background job
| Enum Value | Description |
|---|---|
| move-leads | Move Leads |
| import-leads | Import Leads |
| export-leads | Export Leads |
| update-warmup-accounts | Update Warmup Accounts |
| rename-variable | Rename Variable |
Job status
| Enum Value | Description |
|---|---|
| pending | The background job is waiting in the queue to be processed |
| in-progress | The background job is being processed |
| success | The background job has been successfully processed |
| failed | The background job has failed |
The id of the user that triggered the action that created the job
The id of the entity that the job is related to
Type of entity
| Enum Value | Description |
|---|---|
| list | The entity is a lead list |
| campaign | The entity is a campaign |
| workspace | The entity is a workspace |
{ "id": "675266e304a8e55b17f0228b", "workspace_id": "019c0e38-b397-79a1-9d91-60d94427121c", "user_id": "019c0e38-b397-79a1-9d91-60dac504c576", "type": "move-leads", "entity_id": "019c0e38-b397-79a1-9d91-60db586642a5", "entity_type": "list", "data": {}, "progress": 0, "status": "pending", "created_at": "2026-01-30T09:25:22.967Z", "updated_at": "2026-01-30T09:25:22.967Z" }
List of emails to disable warmup accounts for. The emails should be attached to accounts in your workspace.
List of emails to exclude when include_all_emails is true.
Optional filter to apply when include_all_emails is true. Can contain tag_id or other filter criteria.
https://api.instantly.ai/api/v2/accounts/warmup/disable
https://developer.instantly.ai/_mock/api/v2/api/v2/accounts/warmup/disable
curl -i -X POST \
https://api.instantly.ai/api/v2/accounts/warmup/disable \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{}'The requested Background Job
Unique identifier for the background job
Workspace ID
Type of background job
| Enum Value | Description |
|---|---|
| move-leads | Move Leads |
| import-leads | Import Leads |
| export-leads | Export Leads |
| update-warmup-accounts | Update Warmup Accounts |
| rename-variable | Rename Variable |
Job status
| Enum Value | Description |
|---|---|
| pending | The background job is waiting in the queue to be processed |
| in-progress | The background job is being processed |
| success | The background job has been successfully processed |
| failed | The background job has failed |
The id of the user that triggered the action that created the job
The id of the entity that the job is related to
Type of entity
| Enum Value | Description |
|---|---|
| list | The entity is a lead list |
| campaign | The entity is a campaign |
| workspace | The entity is a workspace |
{ "id": "675266e304a8e55b17f0228b", "workspace_id": "019c0e38-b397-79a1-9d91-60d94427121c", "user_id": "019c0e38-b397-79a1-9d91-60dac504c576", "type": "move-leads", "entity_id": "019c0e38-b397-79a1-9d91-60db586642a5", "entity_type": "list", "data": {}, "progress": 0, "status": "pending", "created_at": "2026-01-30T09:25:22.967Z", "updated_at": "2026-01-30T09:25:22.967Z" }
https://api.instantly.ai/api/v2/accounts/warmup-analytics
https://developer.instantly.ai/_mock/api/v2/api/v2/accounts/warmup-analytics
curl -i -X POST \
https://api.instantly.ai/api/v2/accounts/warmup-analytics \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"emails": [
"user@example.com"
]
}'{ "email_date_data": { "example1@example.com": { … }, "example2@example.com": { … } }, "aggregate_data": { "example1@example.com": { … }, "example2@example.com": { … } } }
This entity represents a tag being assigned to a specific campaign or email account. When an email account is assigned a tag, a new custom tag mapping entry is created, which connects the tag (tag_id field) with the email account (resource_id field). You can use it to see which tag si connected to which resource.