Zorix AI Developer Platform

Build with Zorix AI

A simple OpenAI-compatible API for integrating Zorix AI into your applications, tools, bots and developer workflows.

API Base URL

https://api.api2.zorix.it/v1
API endpoint available

Available Model

zorix-nano-coder-1

Use this model identifier in OpenAI-compatible requests.

Chat Completions

POST /v1/chat/completions

Compatible with standard OpenAI-style chat completion clients.

Responses API

POST /v1/responses

Supports modern response-style integrations and streaming.

Example Request

curl https://api.api2.zorix.it/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "model": "zorix-nano-coder-1", "messages": [ { "role": "user", "content": "Hello" } ] }'

OpenAI SDK Example

from openai import OpenAI client = OpenAI( api_key="YOUR_API_KEY", base_url="https://api.api2.zorix.it/v1" ) response = client.chat.completions.create( model="zorix-nano-coder-1", messages=[ { "role": "user", "content": "Hello" } ] ) print(response.choices[0].message.content)