Quickstart
Make your first OpenAI-compatible request in a few minutes.
Create an API key
Open the JutoNeo Ai dashboard, create an account if needed, then create a token from the token management page. Treat the token like a password and never put it into client-side code.
Install the SDK
pip install openai
Send a request
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.nuorand.com/v1",
)
response = client.chat.completions.create(
model="qwen3.7-max",
messages=[
{"role": "user", "content": "Explain model routing in one paragraph."}
],
)
print(response.choices[0].message.content)
Next steps
- Use the exact IDs shown in the live model catalog.
- Keep your API key in an environment variable on your server.
- Review request usage and balance in the dashboard.
Availability and rates can change as model providers update their catalogs. Use the live model page as the current source of truth.