| Enum Value | Description |
|---|---|
| 0 | Draft |
| 1 | Active |
| 2 | Paused |
| 3 | Completed |
| 4 | Running Subsequences |
| -99 | Account Suspended |
| -1 | Accounts Unhealthy |
| -2 | Bounce Protect |
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/
https://api.instantly.ai/api/v2/campaigns/analytics/daily
https://developer.instantly.ai/_mock/api/v2/api/v2/campaigns/analytics/daily
curl -i -X GET \
'https://api.instantly.ai/api/v2/campaigns/analytics/daily?campaign_id=019a5522-8616-790c-833f-2c9f405f6363&campaign_status=1&end_date=2024-01-01&start_date=2024-01-01' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Default Response
The total number of unique links clicked. Unique meaning from unique leads, not unique links. For instance, if a lead clicked a link 3 times, it will be counted as 1 unique click. If a lead clicked 3 different links, it will still be counted as 1 unique click
The total number of unique opportunities created from the campaign on that day
The total number of unique opportunities created from unique leads from the campaign on that day
[ { "date": "2025-03-01", "sent": 5421, "opened": 99, "unique_opened": 60, "replies": 60, "unique_replies": 60, "clicks": 60, "unique_clicks": 60, "opportunities": 5, "unique_opportunities": 3 } ]
https://api.instantly.ai/api/v2/campaigns/analytics/steps
https://developer.instantly.ai/_mock/api/v2/api/v2/campaigns/analytics/steps
curl -i -X GET \
'https://api.instantly.ai/api/v2/campaigns/analytics/steps?campaign_id=019a5522-8616-790c-833f-2ca0cdbcc6e3&end_date=2024-01-01&include_opportunities_count=true&start_date=2024-01-01' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Default Response
The step number. When null it means we couldn't determine the step number for the event, for instance for list leads, which are not part of a campaign.
The variant number, starting from 0. 0 = A, 1 = B, 2 = C, etc. When null it means we couldn't determine the variant for the event.
The total number of unique links clicked. Unique meaning from unique leads, not unique links. For instance, if a lead clicked a link 3 times, it will be counted as 1 unique click. If a lead clicked 3 different links, it will still be counted as 1 unique click
The total number of opportunities created from this step. Included only if include_opportunities_count is true
The total number of unique opportunities created from this step. Unique meaning unique per lead. If a lead has multiple opportunities, it will be counted as 1 unique opportunity. Included only if include_opportunities_count is true
[ { "step": "1", "variant": "0", "sent": 5421, "opened": 99, "unique_opened": 60, "replies": 60, "unique_replies": 60, "clicks": 60, "unique_clicks": 60, "opportunities": 10, "unique_opportunities": 8 } ]