Migrate Instantly.ai integrations from API v1 to v2.
Use when upgrading from deprecated v1 endpoints, updating authentication,
or migrating endpoint paths and request formats.
Trigger with phrases like "instantly v1 to v2", "instantly api migration",
"instantly upgrade", "instantly deprecated", "migrate instantly api".
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
A direct command skips the review prompt. Inspect the source before running it.
Migrate Instantly.ai integrations from API v1 to v2.
Use when upgrading from deprecated v1 endpoints, updating authentication,
or migrating endpoint paths and request formats.
Trigger with phrases like "instantly v1 to v2", "instantly api migration",
"instantly upgrade", "instantly deprecated", "migrate instantly api".
allowed-tools
Read, Write, Edit, Bash(npm:*), Grep
version
1.12.0
license
MIT
author
Jeremy Longshore <jeremy@intentsolutions.io>
tags
["saas","instantly","migration","upgrade"]
compatibility
Designed for Claude Code
Instantly Upgrade Migration: API v1 to v2
Overview
Migrate from Instantly API v1 (deprecated January 2026) to API v2. Key changes: Bearer token auth replaces query-string API keys, REST-standard endpoints replace legacy paths, scoped API keys replace single global key, and cursor-based pagination replaces offset pagination. Existing v1 integrations via Zapier/Make continue working, but new integrations must use v2.
Prerequisites
Existing Instantly API v1 integration
Access to Instantly dashboard to generate v2 API keys
Understanding of Bearer token authentication
Migration Map
Authentication Change
// v1: API key as query parameter// DEPRECATED — do not useconst v1Url = `https://api.instantly.ai/api/v1/campaign/list?api_key=${API_KEY}`;
// v2: Bearer token in Authorization headerconst v2Response = awaitfetch("https://api.instantly.ai/api/v2/campaigns", {
headers: { Authorization: `Bearer ${API_KEY}` },
});