Skills Artificial Intelligence Setup Juicebox API Authentication and SDK

Setup Juicebox API Authentication and SDK

v20260423
juicebox-install-auth
This skill guides the installation and configuration of the Juicebox PeopleGPT API. It enables developers to access AI-powered people search capabilities across millions of professional profiles. Use this when setting up the initial connection or performing deep people search functionality within your application.
Get Skill
117 downloads
Overview

Juicebox Install & Auth

Overview

Set up Juicebox PeopleGPT API for AI-powered people search across 800M+ professional profiles.

Prerequisites

  • Juicebox account at app.juicebox.ai
  • API key from Dashboard > Settings > API Keys
  • Node.js 18+ or Python 3.8+

Instructions

Step 1: Install SDK

npm install @juicebox/sdk
# or: pip install juicebox-sdk

Step 2: Configure Authentication

export JUICEBOX_API_KEY="jb_live_..."
echo 'JUICEBOX_API_KEY=jb_live_your-key' >> .env

Step 3: Verify Connection

import { JuiceboxClient } from '@juicebox/sdk';
const client = new JuiceboxClient({ apiKey: process.env.JUICEBOX_API_KEY });

const results = await client.search({ query: 'engineer', limit: 1 });
console.log(`Connected! ${results.total} profiles available`);
from juicebox import JuiceboxClient
client = JuiceboxClient(api_key=os.environ['JUICEBOX_API_KEY'])
results = client.search(query='engineer', limit=1)
print(f'Connected! {results.total} profiles')

Error Handling

Error Code Solution
Invalid API key 401 Verify at app.juicebox.ai/settings
Plan limit exceeded 403 Upgrade plan or check quota
Rate limited 429 Check Retry-After header

Resources

Next Steps

After auth, proceed to juicebox-hello-world.

Info
Name juicebox-install-auth
Version v20260423
Size 1.89KB
Updated At 2026-04-28
Language