Prerequisites
All you need is a Parallel AI account and a terminal (or any HTTP client). No SDK installation is required to follow this guide — though we’ll show you a Python example too.1
Create your Parallel AI account
Head to https://web.parallellabs.app/signup and sign up using your Google account or email address.Once you’re in, you’ll land on your company dashboard. If this is your first time, a default company workspace is created for you automatically.
2
Generate a Company API Key
- In your dashboard, navigate to the Integrations page from the left sidebar.
- Find the API Keys section and click Generate New Key.
- Give your key a descriptive name (e.g.
my-first-key). - Copy the key immediately — it won’t be shown again after you close the dialog.
X-API-Key header on every request. See the Authentication guide for all supported header formats.3
List your agents
With your key in hand, make your first live API call. This request retrieves all agents in your company:If your account is brand new, you’ll see an empty list — that’s expected:A
200 OK response confirms that your key is valid and your connection to the API is working correctly.4
Create your first chat completion
Parallel AI exposes an OpenAI-compatible The API returns a standard OpenAI-format response object with the model’s reply inside
/chat/completions endpoint. Use it to run a completion against any supported model:- cURL
- Python (openai library)
choices[0].message.content.You can swap
"gpt-4o-mini" for any model supported on the platform. Refer to the API Reference for the full list of available models.5
You're ready — explore what's next
You’ve authenticated, listed your agents, and run a live chat completion. Here’s where to go from here:
Build AI Agents
Create multi-channel agents for web, email, SMS, and voice — and connect them to your Knowledge Base.
Full API Reference
Explore every endpoint available in the Parallel AI REST API with request and response schemas.
