Welcome to the Wokey Blog

Wokey Team · 2026-06-13

Turning idle AI-subscription quota into an API anyone can call is the whole reason Wokey exists. This is the first post on the blog — a quick look at what we're building, why, and what you can expect here next.

The problem we're solving

Some people have more AI-subscription quota than they can use; others want pay-as-you-go access but balk at monthly plans. Wokey connects the two sides:

  • Buyers get one unified platform API key — no separate account per model;
  • Sharers custody idle quota and earn from real usage;
  • The platform handles routing, billing, settlement, and risk.

In one line: put idle AI subscriptions to work.

One-minute quickstart

Once you have a platform key, calling Wokey looks almost exactly like the OpenAI API you already know:

curl https://api.wokey.ai/v1/chat/completions \
  -H "Authorization: Bearer $WOKEY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "auto",
    "messages": [{ "role": "user", "content": "Hello, Wokey!" }]
  }'

What's coming next

  • The logic behind routing and pricing
  • How sharers maximize earnings
  • Platform reliability and risk-control practices

Thanks for reading — see you in the next post.