Getting Started
Quick Start
Get your first AI request routed through Plurence in under 5 minutes.
1
Create an account
Plurence is currently invite-only. Visit request-access to join the waitlist, or use your invite code at sign-up.
After signing up you'll have a personal account and a default project already created for you.
2
Create an API key
In the Projects panel, open your project and go to the API Keys tab. Click New Key, give it a name, and copy the key — it's shown only once.
Your key looks like this
plr_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxx 3
Make your first request
The Plurence gateway speaks the OpenAI Chat Completions format. Point any OpenAI-compatible client at
https://gateway.plurence.com and authenticate with your API key.
curl
curl https://gateway.plurence.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"model": "gpt-4o-mini",
"messages": [{"role": "user", "content": "Hello!"}]
}' 4
Drop in your existing SDK
If you're already using the OpenAI Python or Node SDK, you only need to change base_url:
python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_PLURENCE_API_KEY",
base_url="https://gateway.plurence.com/v1",
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)