Quickstart

From zero to a frontier model call in 60 seconds.

One OpenAI-compatible endpoint:https://nimbusapi.net/api/v1. Any model from the catalog. Real-time credit accounting. No retry markup, no quota juggling.

Sign in to render snippets with your actual key inline.
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_KEY",
    base_url="https://nimbusapi.net/api/v1",
)

response = client.chat.completions.create(
    model="claude-opus-4-8",
    messages=[{"role": "user", "content": "ship it"}],
)
print(response.choices[0].message.content)