File contents Retell AI Install Auth
Overview
Install the Retell AI SDK and configure API key authentication for building voice agents.
Prerequisites
Retell AI account at retellai.com
API key from the Retell AI dashboard
Node.js 18+ or Python 3.9+
Instructions
Step 1: Install SDK
set -euo pipefail
# Node.js
npm install retell-sdk
# Python
pip install retell-sdk
Step 2: Configure Environment
# .env
RETELL_API_KEY=key_xxxxxxxxxxxxxxxxxxxxxxxx
Step 3: Initialize Client (Node.js)
import Retell from 'retell-sdk';
const retell = new Retell({ apiKey: process.env.RETELL_API_KEY! });
// Verify connection — list agents
const agents = await retell.agent.list();
console.log(`Connected! ${agents.length} agent(s) configured.`);
Step 4: Initialize Client (Python)
from retell import Retell
import os
retell = Retell(api_key=os.environ["RETELL_API_KEY"])
agents = retell.agent.list()
print(f"Connected! {len(agents)} agent(s) configured.")
Output
retell-sdk installed
API key configured
Connection verified with agent listing
Error Handling
Error
Cause
Solution
401 Unauthorized
Invalid API key
Verify key in Retell Dashboard
ModuleNotFoundError
SDK not installed
npm install retell-sdk
Connection timeout
Network issue
Check firewall allows HTTPS
Resources
Next Steps
Create your first agent: retellai-hello-world
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1 --- 2 name: jeremylongshore-claude-code-plugins-plus-skills-retellai-ins 3 description: Retell AI Install Auth 4 --- 5 6 # Retell AI Install Auth 7 8 ## Overview 9 Install the Retell AI SDK and configure API key authentication for building voice agents. 10 11 ## Prerequisites 12 - Retell AI account at retellai.com 13 - API key from the Retell AI dashboard 14 - Node.js 18+ or Python 3.9+ 15 16 ## Instructions 17 18 ### Step 1: Install SDK 19 ```bash 20 set -euo pipefail 21 # Node.js 22 npm install retell-sdk 23 24 # Python 25 pip install retell-sdk 26 ``` 27 28 ### Step 2: Configure Environment 29 ```bash 30 # .env 31 RETELL_API_KEY=key_xxxxxxxxxxxxxxxxxxxxxxxx 32 ``` 33 34 ### Step 3: Initialize Client (Node.js) 35 ```typescript 36 import Retell from 'retell-sdk'; 37 38 const retell = new Retell({ apiKey: process.env.RETELL_API_KEY! }); 39 40 // Verify connection — list agents 41 const agents = await retell.agent.list(); 42 console.log(`Connected! ${agents.length} agent(s) configured.`); 43 ``` 44 45 ### Step 4: Initialize Client (Python) 46 ```python 47 from retell import Retell 48 import os 49 50 retell = Retell(api_key=os.environ["RETELL_API_KEY"]) 51 agents = retell.agent.list() 52 print(f"Connected! {len(agents)} agent(s) configured.") 53 ``` 54 55 ## Output 56 - `retell-sdk` installed 57 - API key configured 58 - Connection verified with agent listing 59 60 ## Error Handling 61 | Error | Cause | Solution | 62 |-------|-------|----------| 63 | `401 Unauthorized` | Invalid API key | Verify key in Retell Dashboard | 64 | `ModuleNotFoundError` | SDK not installed | `npm install retell-sdk` | 65 | Connection timeout | Network issue | Check firewall allows HTTPS | 66 67 ## Resources 68 - [Retell AI SDKs](https://docs.retellai.com/get-started/sdk) 69 - [retell-sdk npm](https://www.npmjs.com/package/retell-sdk) 70 71 ## Next Steps 72 Create your first agent: `retellai-hello-world` 73 74 --- 75 > Converted and distributed by [TomeVault](https://tomevault.io/claim/jeremylongshore) — claim your Tome and manage your conversions. 76 <!-- tomevault:4.0:skill_md:2026-04-11 -->
tomevault-io/skills-registry/tree/main/jeremylongshore--claude-code-plugins-plus-skills--retellai-install-auth commit 734a8ea9f3
Frequently asked questions How do I install the Jeremylongshore Claude Code Plugins Plus Skills Retellai Install Auth skill? Run npx skillmds@latest add tomevault-io/jeremylongshore-claude-code-plugins-plus-skills-retellai-ins in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Jeremylongshore Claude Code Plugins Plus Skills Retellai Install Auth skill do? Retell AI Install Auth It is listed under Coding & Dev Tools on SkillMD.
Is Jeremylongshore Claude Code Plugins Plus Skills Retellai Install Auth safe to use? This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Jeremylongshore Claude Code Plugins Plus Skills Retellai Install Auth? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Jeremylongshore Claude Code Plugins Plus Skills Retellai Install Auth free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Jeremylongshore Claude Code Plugins Plus Skills Retellai Install Auth? tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.