All posts

Introducing 1024X

One unified API for every frontier model.

· 1024X Team · 4 min read

We built 1024X for one reason: switching between AI providers shouldn't be a project. It should be a config change.

Today we launch a single, OpenAI- and Anthropic-compatible HTTP gateway that routes to the model you ask for and bills you per token at provider cost. No subscriptions, no minimums, no markup.

What you get

  • Unified Anthropic-style /v1/messages and OpenAI-style /v1/chat/completions endpoints
  • 200+ models from Anthropic, OpenAI, Google, DeepSeek, Mistral and more
  • Per-key usage tracking with token-accurate billing across cache reads/writes
  • Streaming SSE that survives upstream failover
  • Self-host in 10 minutes — same gateway, your infra

Try it now

bash
curl https://api.1024x.ai/v1/messages \
  -H "Authorization: Bearer $X1024_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-opus-4-7",
    "max_tokens": 256,
    "messages": [{ "role": "user", "content": "Hello, 1024X!" }]
  }'

Sign up for an API key, point your existing client at https://api.1024x.ai, and you're live. We'll cover deeper internals — token accounting, failover, and the self-host story — in the next few posts.