API Access

Build with dogecat

OpenAI-compatible API powered by decentralized inference. Drop-in replacement, censorship-resistant, no rate limits.

Simple Pricing

Free Preview

Try it out on the homepage

$0
  • Web chat access
  • Qwen3-235B model
  • Limited daily usage
Try Free
RECOMMENDED

API Access

For developers & apps

$4.99/month
  • 100M tokens included
  • OpenAI-compatible API
  • Multiple API keys
  • Priority support
Subscribe Now

Quick Start

1Get your API key

Sign up and create an API key from your dashboard.

Create Account

2Make your first request

Use any OpenAI-compatible client. Just change the base URL.

Python
from openai import OpenAI

client = OpenAI(
    base_url="https://dogecat.com/api/v1",
    api_key="your-api-key"
)

response = client.chat.completions.create(
    model="Qwen/Qwen3-235B-A22B-Instruct-2507-FP8",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)

3Or use cURL

Shell
curl https://dogecat.com/api/v1/chat/completions \
  -H "Authorization: Bearer your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "Qwen/Qwen3-235B-A22B-Instruct-2507-FP8",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

4Use with OpenClaw

Add dogecat as a provider in your OpenClaw config. Works with any OpenClaw agent!

~/.openclaw/config.yaml
providers:
  dogecat:
    kind: openai
    baseUrl: https://dogecat.com/api/v1
    apiKey: PASTE_YOUR_API_KEY_HERE
    models:
      - Qwen/Qwen3-235B-A22B-Instruct-2507-FP8

# Then use it as your default:
defaultModel: dogecat/Qwen/Qwen3-235B-A22B-Instruct-2507-FP8

Don't have OpenClaw? Get it here →

API Reference

POST/api/v1/chat/completions

Create a chat completion. Fully compatible with OpenAI's API.

Request Body

ParameterTypeDescription
modelstringModel ID to use
messagesarrayList of messages in the conversation
streambooleanWhether to stream responses (optional)
max_tokensintegerMaximum tokens to generate (optional)
temperaturenumberSampling temperature 0-2 (optional)
GET/api/v1/models

List available models.

Available Models

ModelInput / 1MOutput / 1MContext

Qwen3-235B-A22B-Instruct-2507-FP8

Latest Qwen3 MoE, 235B parameters

$0.50$1.00128K