Loading...
Loading...
Install and configure Instantly SDK/CLI authentication. Use when setting up a new Instantly integration, configuring API keys, or initializing Instantly in your project. Trigger with phrases like "install instantly", "setup instantly", "instantly auth", "configure instantly API key".
npx skill4agent add jeremylongshore/claude-code-plugins-plus-skills instantly-install-auth# Node.js
npm install @instantly/sdk
# Python
pip install instantly# Set environment variable
export INSTANTLY_API_KEY="your-api-key"
# Or create .env file
echo 'INSTANTLY_API_KEY=your-api-key' >> .env// Test connection code here| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in Instantly dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.instantly.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run |
import { InstantlyClient } from '@instantly/sdk';
const client = new InstantlyClient({
apiKey: process.env.INSTANTLY_API_KEY,
});from instantly import InstantlyClient
client = InstantlyClient(
api_key=os.environ.get('INSTANTLY_API_KEY')
)instantly-hello-world