Dolphy API · Public preview
OpenAI-compatible. Drop in the official SDK by changing one line. Chat, image gen, image edit, video, motion control — with specialty models you can't get from OpenAI or Anthropic.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://dolphy.chat/api/v1",
apiKey: process.env.DOLPHY_API_KEY,
});
const r = await client.chat.completions.create({
model: "dolphy-chat-1",
messages: [{ role: "user", content: "Write a sci-fi opening line." }],
});
console.log(r.choices[0].message.content);from openai import OpenAI
client = OpenAI(
base_url="https://dolphy.chat/api/v1",
api_key="dpy_live_...",
)
r = client.images.generate(
model="dlpy-img-21",
prompt="a cinematic dolphin in space, 4k",
)
print(r.data[0].url)curl https://dolphy.chat/api/v1/video/queue \
-H "Authorization: Bearer $DOLPHY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "dlpy-vid-4-i2v",
"prompt": "neon dolphin swimming through nebula clouds",
"duration": "5s",
"resolution": "1080p",
"image_url": "https://your-cdn.example.com/dolphin.jpg"
}'Drop in the official `openai` SDK by changing baseURL. No new SDKs to learn, no auth dance.
Photoreal, illustration, design and specialty models — one id each, one credit pool, no per-vendor accounts.
Text-to-video and image-to-video up to 1080p, plus motion control to retarget a character's movement.
API usage draws from the same credits as dolphy.chat. Members get ~55% more credits per dollar.
One credit balance powers your web account and your API. Buy credits, use them however you want.
Member rate: $0.065/credit · Non-member: $0.0999/credit · Members get ~55% more credits per dollar on every purchase.
API access requires an active Dolphy Membership. $14.99/mo unlocks your API key, member pricing, and 100 monthly bonus credits.