Built on Base

One API for Every LLM

A unified OpenAI and Anthropic-compatible endpoint with web3 billing. One base URL, all models.

Features

Unified API

Drop-in replacement for OpenAI and Anthropic SDKs. One base URL, all models.

Smart Routing

Automatic failover, priority channels, price-aware routing.

Streaming Support

Full SSE streaming passthrough for real-time responses.

Web3 Billing

Pay with USDC on-chain. Transparent pricing per token. No credit card.

C2C Marketplace

Anyone can supply channels and set their own pricing. A peer-to-peer API marketplace.

Affiliate Program

Earn commissions by referring users. Built-in referral tracking and on-chain payouts.

Quick Start

openai-client.ts
cURL
$curl -X POST http://localhost:8080/v1/chat/completions \
-H "Authorization: Bearer sk-xxxx" \
-H "Content-Type: application/json" \
-d '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello"}]}'
OpenAI SDK
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'sk-xxxx',
  baseURL: 'http://localhost:8080/v1',
});

const chat = await client.chat.completions.create({
  model: 'gpt-4o',
  messages: [{ role: 'user', content: 'Hello' }],
});

Switch just your baseURL. Everything else stays the same.

Web3 Billing

Crypto-native payments

Deposit USDC on-chain, pay per token for API usage. Merchants earn and withdraw on-chain. No credit cards, no intermediaries.

01

Deposit

Transfer USDC to your account address

02

Use

API requests deduct from your balance per token

03

Earn

Merchants receive revenue, affiliates earn commissions

Start building with a unified LLM API