Skip to main content
Aria.

Documentation

Everything you need
to build with Aria

Guides, API reference, and integration tutorials. From first API call to production deployment.

Quick Start — install & first call
npm install @replace-with-your-scope/aria-sdk
import Client from "@replace-with-your-scope/aria-sdk";

const client = new Client({ apiKey: "YOUR_API_KEY" });

const response = await client.chat.completions.create({
  model: "pro",
  messages: [{ role: "user", content: "Hello!" }],
});

return response.choices[0].message.content;

Base URL: https://api.aria.example.invalid/v1

DemoUI kit preview — content is fictional.