Skip to content

Parel API

OpenAI-compatible AI gateway. Access 60+ models for chat, vision, image, video, audio, embeddings, reranking, moderation, comparison, and your own imported models through one API.

https://api.parel.cloud/v1 Full reference (llms-full.txt)

Any code using the OpenAI SDK works with Parel. Change two values: api_key and base_url.

The CLI is the fastest path for local setup:

Terminal window
brew install parel-cloud/tap/parel
parel auth login
parel chat "Hello from Parel"

Or use the OpenAI SDK directly:

from openai import OpenAI
client = OpenAI(
api_key="pk-dev-YOUR_KEY",
base_url="https://api.parel.cloud/v1",
)
response = client.chat.completions.create(
model="gemini-3-flash",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
SurfaceURL
OpenAI-compatible APIhttps://api.parel.cloud/v1
Anthropic-compatible bridgehttps://api.parel.cloud/anthropic
Dashboardhttps://app.parel.cloud
Live model cataloghttps://api.parel.cloud/public/models
  • Quickstart if you want the shortest working path.
  • CLI if you work from the terminal or want local proxy support.
  • OpenAI compatibility if you are migrating existing code.
  • Claude Code if you want to run Claude Code against Parel models.
  • Instant BYOM if you want to import a public Hugging Face model.
  • Dedicated GPU if you need pinned capacity for a model.