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.

Cartoon developer celebrates a first response arriving through a floating model lattice.

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.

Read the quickstart
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);