Documentation
From your first call to your next release.
Connect your app to Arnict’s open-model API. Start with a working example, then explore models, streaming, usage and error handling.
Available
Choose an available model and authenticate with your Arnict API key.

Send your first request
Set ARNICT_API_KEY in your environment and install the SDK for your language. The quickstart walks through setup and running this example.
Node.js
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.arnict.com/v1",
apiKey: process.env.ARNICT_API_KEY,
});
const completion = await client.chat.completions.create({
model: "zai/glm-5.3-flash-uncensored",
messages: [{ role: "user", content: "Hello" }],
max_tokens: 64,
});
console.log(completion.choices[0].message.content);All guides
Guides
API reference
Pricing and rewards
Coming soon
Policies
Need help? Email support@arnict.com with the endpoint, model ID and error code. Keep API keys and private prompt content out of your message.
