instantly-hello-world

Featured

Create a minimal working Instantly.ai example with real API calls. Use when starting a new Instantly integration, testing your setup, or learning basic Instantly API v2 patterns. Trigger with phrases like "instantly hello world", "instantly example", "instantly quick start", "simple instantly code", "test instantly api".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Instantly Hello World ## Overview Minimal working example that lists your campaigns, checks email account health, and pulls campaign analytics — all using real Instantly API v2 endpoints. ## Prerequisites - Completed `instantly-install-auth` setup - At least one email account connected in Instantly - `INSTANTLY_API_KEY` environment variable set ## Instructions ### Step 1: List Your Campaigns ```typescript import { instantly } from "./src/instantly"; interface Campaign { id: string; name: string; status: number; // 0=Draft, 1=Active, 2=Paused, 3=Completed } const STATUS_LABELS: Record<number, string> = { 0: "Draft", 1: "Active", 2: "Paused", 3: "Completed", 4: "Running Subsequences", [-99]: "Suspended", [-1]: "Accounts Unhealthy", [-2]: "Bounce Protect", }; async function listCampaigns() { const campaigns = await instantly<Campaign[]>("/campaigns?limit=10"); console.log(`Found ${campaigns.length} campaigns:\n`); for (const c of campaigns) { console.log(` ${c.name} [${STATUS_LABELS[c.status] ?? c.status}] — ${c.id}`); } return campaigns; } ``` ### Step 2: Check Email Account Health ```typescript interface Account { email: string; status: number; warmup_status: string; daily_limit: number | null; } async function checkAccounts() { const accounts = await instantly<Account[]>("/accounts?limit=5"); console.log(`\nEmail Accounts (${accounts.length}):`); for (const a of accounts) { console.log(` ${a.email} — status: ${a.statu...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

instantly-observability

Set up monitoring, alerting, and dashboards for Instantly.ai integrations. Use when implementing campaign health monitoring, account health alerts, or building analytics dashboards from Instantly data. Trigger with phrases like "instantly monitoring", "instantly dashboard", "instantly alerts", "instantly observability", "monitor instantly campaigns".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-prod-checklist

Execute Instantly.ai production launch checklist and pre-flight validation. Use when deploying Instantly integrations to production, launching first campaign, or auditing production readiness. Trigger with phrases like "instantly production", "instantly launch checklist", "instantly go-live", "instantly pre-flight", "instantly prod ready".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-core-workflow-b

Manage Instantly.ai email account warmup, analytics, and deliverability. Use when enabling warmup, monitoring sender reputation, pulling analytics, or troubleshooting deliverability issues. Trigger with phrases like "instantly warmup", "instantly analytics", "email warmup instantly", "instantly deliverability", "instantly account health".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-common-errors

Diagnose and fix Instantly.ai API v2 common errors and exceptions. Use when encountering Instantly errors, debugging failed requests, or troubleshooting campaign/account/lead issues. Trigger with phrases like "instantly error", "instantly 401", "instantly 429", "instantly api failed", "instantly debug", "instantly troubleshoot".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-core-workflow-a

Build and launch an Instantly.ai cold email campaign end-to-end. Use when creating campaigns, adding leads, configuring sequences, and launching outreach via the Instantly API v2. Trigger with phrases like "instantly campaign", "launch instantly campaign", "create instantly outreach", "instantly cold email", "instantly send campaign".

2,266 Updated today
jeremylongshore