perplexity-install-auth
Set up your environment and install the necessary libraries to authenticate with the Perplexity API.
Install
mkdir -p .claude/skills/perplexity-install-auth && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/5442" && unzip -o skill.zip -d .claude/skills/perplexity-install-auth && rm skill.zipInstalls to .claude/skills/perplexity-install-auth
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Install and configure Perplexity Sonar API authentication.Key capabilities
- →Install OpenAI client library for Perplexity
- →Configure Perplexity API authentication
- →Verify API connection with sonar models
- →Manage API keys via environment variables
How it works
The skill configures the standard OpenAI client library to point to the Perplexity Sonar API base URL. It validates connectivity by executing a chat completion request.
Inputs & outputs
When to use perplexity-install-auth
- →Initializing new Perplexity projects
- →Managing API keys securely
- →Installing required client SDKs
- →Configuring environment variables
About this skill
Perplexity Install & Auth
Overview
Set up Perplexity Sonar API access using the OpenAI-compatible chat completions endpoint at https://api.perplexity.ai. Perplexity does not have a custom SDK -- you use the standard OpenAI client library pointed at Perplexity's base URL.
Prerequisites
- Node.js 18+ or Python 3.10+
- Perplexity account at perplexity.ai
- API key from perplexity.ai/settings/api
Instructions
Step 1: Install OpenAI Client Library
set -euo pipefail
# Node.js / TypeScript
npm install openai
# Python
pip install openai
There is no @perplexity/sdk package. Perplexity uses the OpenAI wire format, so you use the official openai package with a custom baseURL.
Step 2: Configure API Key
# Set environment variable
export PERPLEXITY_API_KEY="pplx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# Or create .env file (add .env to .gitignore)
echo 'PERPLEXITY_API_KEY=pplx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' >> .env
API keys start with pplx- and are generated at perplexity.ai/settings/api. You must add credits to your account before making API calls.
Step 3: Verify Connection (TypeScript)
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.PERPLEXITY_API_KEY,
baseURL: "https://api.perplexity.ai",
});
async function verify() {
const response = await client.chat.completions.create({
model: "sonar",
messages: [{ role: "user", content: "What is 2+2?" }],
max_tokens: 50,
});
console.log("Connected:", response.choices[0].message.content);
console.log("Model:", response.model);
console.log("Tokens used:", response.usage?.total_tokens);
}
verify().catch(console.error);
Step 4: Verify Connection (Python)
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["PERPLEXITY_API_KEY"],
base_url="https://api.perplexity.ai",
)
response = client.chat.completions.create(
model="sonar",
messages=[{"role": "user", "content": "What is 2+2?"}],
max_tokens=50,
)
print("Connected:", response.choices[0].message.content)
print("Model:", response.model)
print("Tokens:", response.usage.total_tokens)
Available Models
| Model | Use Case | Input $/M tokens | Output $/M tokens |
|---|---|---|---|
sonar | Fast search, simple queries | $1 | $1 |
sonar-pro | Deep research, more citations | $3 | $15 |
sonar-reasoning-pro | Chain-of-thought with search | $3 | $15 |
sonar-deep-research | Multi-step research synthesis | $2 | $8 |
Error Handling
| Error | Cause | Solution |
|---|---|---|
401 Unauthorized | Invalid or missing API key | Verify key starts with pplx- and has credits |
403 Forbidden | Key lacks model access | Check key permissions at perplexity.ai/settings |
Module not found: openai | SDK not installed | Run npm install openai or pip install openai |
Connection refused | Wrong base URL | Ensure baseURL is https://api.perplexity.ai |
Output
- OpenAI client configured with Perplexity base URL
- Successful API response confirming connection
- Token usage confirming billing is active
Resources
Next Steps
After successful auth, proceed to perplexity-hello-world for your first search query.
Prerequisites
Limitations
- →No custom Perplexity SDK available
- →Requires account credits for API calls
How it compares
Unlike using a custom SDK, this approach uses the standard OpenAI client library with a custom base URL.
Compared to similar skills
perplexity-install-auth side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| perplexity-install-auth (this skill) | 1 | 27d | Review | Beginner |
| twilio-communications | 3 | 6mo | Review | Intermediate |
| lindy-install-auth | 4 | 27d | Caution | Beginner |
| clay-install-auth | 0 | 27d | Caution | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by jeremylongshore
View all by jeremylongshore →You might also like
twilio-communications
davila7
Build communication features with Twilio: SMS messaging, voice calls, WhatsApp Business API, and user verification (2FA). Covers the full spectrum from simple notifications to complex IVR systems and multi-channel authentication. Critical focus on compliance, rate limits, and error handling. Use when: twilio, send SMS, text message, voice call, phone verification.
lindy-install-auth
jeremylongshore
Install and configure Lindy AI SDK/CLI authentication. Use when setting up a new Lindy integration, configuring API keys, or initializing Lindy in your project. Trigger with phrases like "install lindy", "setup lindy", "lindy auth", "configure lindy API key".
clay-install-auth
jeremylongshore
Install and configure Clay SDK/CLI authentication. Use when setting up a new Clay integration, configuring API keys, or initializing Clay in your project. Trigger with phrases like "install clay", "setup clay", "clay auth", "configure clay API key".
evernote-install-auth
jeremylongshore
Install and configure Evernote SDK and OAuth authentication. Use when setting up a new Evernote integration, configuring API keys, or initializing Evernote in your project. Trigger with phrases like "install evernote", "setup evernote", "evernote auth", "configure evernote API", "evernote oauth".
instantly-install-auth
jeremylongshore
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".
openrouter-install-auth
jeremylongshore
Execute set up OpenRouter API authentication and configure API keys. Use when starting a new OpenRouter integration or troubleshooting auth issues. Trigger with phrases like 'openrouter setup', 'openrouter api key', 'openrouter authentication', 'configure openrouter'.