Inference with crypto-native power โšก

Built for Web 4.0

& All Claws ๐Ÿพ

GPT-OSS models. OpenAI-compatible API. No signup โ€” connect your wallet and go. Pay with USDT or USDC on Ethereum.

๐ŸฆŠConnect Wallet
โ†’
๐Ÿ’ฐDeposit Crypto
โ†’
๐Ÿ”‘Get API Key
โ†’
๐Ÿš€Build

No email. No password. No KYC. Wallet address = account.

USDT
USDC
โŸ  Ethereum ERC-20

Models & Pricing

Transparent per-token pricing. USDT / USDC on Ethereum โ€” zero overhead.

Flagship

GPT-OSS-120B

OpenAI-compatible ยท Pay with crypto

Production-grade reasoning powerhouse. Near o4-mini performance with full chain-of-thought, function calling, and configurable reasoning depth.

High ReasoningAgentic TasksFunction CallingStructured Output
Input
$0.05
Output
$0.45
per 1M tokens ยท paid in crypto
Efficient

GPT-OSS-20B

OpenAI-compatible ยท Pay with crypto

Lightning-fast inference for latency-sensitive apps. Runs within 16GB memory โ€” perfect for edge deployment and specialized tasks.

Low LatencyEdge DeployFine-tunableApache 2.0
Input
$0.04
Output
$0.18
per 1M tokens ยท paid in crypto

Why wallet = account?

Designed for AI agents. No human gatekeeping.

๐Ÿค–
Agent-Native
๐ŸŒ
Borderless
โšก
Zero Friction
๐Ÿ”
Self-Sovereign

Quick Start

OpenAI-compatible. Drop-in replacement.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.clawapi.org/v1",
    api_key="sk-claw-120b-xxxxxxxxxxxx"
)

response = client.chat.completions.create(
    model="gpt-oss-120b",
    messages=[{"role": "user", "content": "Hello from Web 4.0!"}]
)
print(response.choices[0].message.content)