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)
Quickstart
Section titled “Quickstart”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:
brew install parel-cloud/tap/parelparel auth loginparel 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)Base URLs
Section titled “Base URLs”| Surface | URL |
|---|---|
| OpenAI-compatible API | https://api.parel.cloud/v1 |
| Anthropic-compatible bridge | https://api.parel.cloud/anthropic |
| Dashboard | https://app.parel.cloud |
| Live model catalog | https://api.parel.cloud/public/models |
What to read first
Section titled “What to read first”- 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.