A fully OpenAI-compatible interface. Route any standard SDK directly to our base endpoint, supply an API key, and execute calls backed by Gnoza's real-time consensus alignment. Enjoy the community-guided safeguards alongside our hardcoded ethical baseline. Access keys are generated securely by token holders, and request routing matches your on-chain token tier.
Token keys are distributed directly to network participants. Each key adopts your address's balance tier and daily request limit. Secure holder-level execution by holding 0.5 SOL or 100K $GNOZA.
https://gnoza.cloud/api/v1
curl https://gnoza.cloud/api/v1/chat/completions \
-H "Authorization: Bearer $GNOZA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "meta-llama/llama-3.3-70b-instruct",
"messages": [{"role": "user", "content": "What is Gnoza?"}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://gnoza.cloud/api/v1",
api_key="gnoza_sk_..." # your key
)
resp = client.chat.completions.create(
model="meta-llama/llama-3.3-70b-instruct",
messages=[{"role": "user", "content": "What is Gnoza?"}]
)
print(resp.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://gnoza.cloud/api/v1",
apiKey: process.env.GNOZA_API_KEY,
});
const resp = await client.chat.completions.create({
model: "meta-llama/llama-3.3-70b-instruct",
messages: [{ role: "user", content: "What is Gnoza?" }],
});
console.log(resp.choices[0].message.content);
Specify the model ID inside your payload. Elevated network tiers grant access to advanced models; public utility models are open to any valid token.
| Free | any active wallet |
| meta-llama/llama-3.3-70b-instruct | Llama 3.3 70B · 128K ctx |
| qwen/qwen3-30b-ajb-instruct-2507 | Qwen3 30B · 128K ctx |
| mistralai/mistral-nemo | Mistral Nemo · 128K ctx |
| Holder | hold 0.5 SOL or 100K $GNOZA |
| deepseek/deepseek-chat-v3.1 | DeepSeek V3.1 · 160K ctx |
| qwen/qwen3-235b-a22b-2507 | Qwen3 235B · 256K ctx |
| meta-llama/llama-4-scout | Llama 4 Scout · 1024K ctx |
| mistralai/mistral-small-2603 | Mistral Small · 256K ctx |
| Premium | hold 1 SOL or 1M $GNOZA |
| deepseek/deepseek-v4-pro | DeepSeek V4 Pro · 1024K ctx |
| meta-llama/llama-4-maverick | Llama 4 Maverick · 1024K ctx |
| qwen/qwen3-max | Qwen3 Max · 256K ctx |
| mistralai/mistral-large-2512 | Mistral Large · 256K ctx |
All API transactions are automatically evaluated against the immutable safety baseline before processing, governed by the active consensus parameters. This foundational baseline cannot be modified or bypassed via headers — delivering the identical, tamper-proof system guarantees present across Gnoza's front-end applications.