Quick Start Guide

Get up and running.

1. Get Your API Key

  1. Create an account on the platform.
  2. Buy credits (minimum $1.50).
  3. Go to API Keys and create a key — choose Standard for most models, or a dedicated key for our own jzs-max-3.0.
  4. Copy your key (format: sk-xxxx...xxxx)

2. Base URL

All API requests go through:

https://jzstoken.com/api/v1

This is an OpenAI-compatible endpoint. Most SDKs and clients accept it as a drop-in replacement.

3. Make Your First API Call

About these examples

We have not executed the commands on this page ourselves — we do not hold a customer-side key, and testing with our internal upstream credentials would exercise a different path than the one you take. The model ID shown is one our customers call successfully every day, and every parameter here matches the live catalog. If a command fails for you, the error body names the cause; tell us and we will fix the page.

Test your key with a simple chat completion:

curl https://jzstoken.com/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-YOUR_KEY_HERE" \
  -d '{
    "model": "gpt-5.6-terra",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

4. List Available Models

curl https://jzstoken.com/api/v1/models \
  -H "Authorization: Bearer sk-YOUR_KEY_HERE"

Returns only the models your API key type has access to.

5. SDK Integration

Use any OpenAI-compatible SDK. Example with Python:

from openai import OpenAI

client = OpenAI(
    base_url="https://jzstoken.com/api/v1",
    api_key="sk-YOUR_KEY_HERE"
)

response = client.chat.completions.create(
    model="gpt-5.6-terra",
    messages=[{"role": "user", "content": "Hello!"}]
)

print(response.choices[0].message.content)

Need help?

Contact us on WhatsApp for instant support, or check the FAQ.