One API. Every Model.

Access 100+ LLMs
through a single endpoint

OpenAI-compatible API with transparent pricing. No subscriptions, pay only for what you use. Switch models with one line of code.

100+

Models Available

99.9%

API Uptime

<200ms

Avg Latency

6+

Providers

OpenAI-Compatible API

Drop-in replacement for OpenAI. Change one line of code.

Transparent Pricing

No hidden fees. Pay only for tokens used, with 20% markup over wholesale.

Pay As You Go

Purchase credits in packs. No subscriptions, no minimums.

One Line Change

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!" }],
});