Gnoza

Gnoza — Developer API Hub
Developers · Gnoza API

Engineer with the
collective's model.

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.

Link a wallet to generate your API token

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.

Base URL
https://gnoza.cloud/api/v1
Redirect standard OpenAI libraries to this endpoint. Responses maintain identical payload structures; streaming is natively supported.
Curl
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?"}]
  }'
Python — OpenAI
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)
Node — OpenAI
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
Always On

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.