Free tier available

Claude API

Opus 7.8 chat completions with live streaming through the Idoworx API.

View Documentation

Overview

Use the Idoworx Claude-compatible chat endpoint to call Opus 7.8. Create your free Idoworx API key on this page, then call the endpoint with live streaming.

Features

  • Chat completions
  • Live streaming
  • Opus 7.8

Authentication

Bearer API key (Authorization header)

API key instructions

Click Get API Key on this page to create a free Idoworx key. Then POST https://idoworx.com/api/v1/chat/completions with model opus-7.8 and Authorization: Bearer YOUR_IDOWORX_KEY.

Rate limits

Shared fair-use limits. Excessive automated abuse may be blocked.

Example usage (python)

import requests

resp = requests.post(
    "https://idoworx.com/api/v1/chat/completions",
    headers={
        "Content-Type": "application/json",
        "Authorization": "Bearer YOUR_IDOWORX_KEY",
    },
    json={
        "model": "opus-7.8",
        "stream": True,
        "messages": [{"role": "user", "content": "Hello"}],
    },
    stream=True,
    timeout=120,
)
for line in resp.iter_lines():
    if line:
        print(line.decode())

Endpoint: https://idoworx.com/api/v1/chat/completions

FAQ

How do I get a key?

Click Get API Key on this page. Copy the key immediately — it is shown only once.

What model do I send?

Use "model": "opus-7.8" in the JSON body.

Same endpoint as OpenAI?

Yes — OpenAI-compatible chat completions path.