OpenAI-compatible API with transparent pricing. No subscriptions, pay only for what you use. Switch models with one line of code.
Models Available
API Uptime
Avg Latency
Providers
Drop-in replacement for OpenAI. Change one line of code.
No hidden fees. Pay only for tokens used, with 20% markup over wholesale.
Purchase credits in packs. No subscriptions, no minimums.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://ai.myhermes.cloud/v1",
apiKey: process.env.MYHERMES_API_KEY,
});
// Works with any model in our catalog
const response = await client.chat.completions.create({
model: "anthropic/claude-sonnet-4-20250514",
messages: [{ role: "user", content: "Hello!" }],
});