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 @aria-ai/sdk
import Aria from "@aria-ai/sdk";
const client = new Aria({ apiKey: process.env.ARIA_API_KEY });
const response = await client.chat.completions.create({
model: "aria-pro",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);Start here
Quick Start
Get your first API call working in under 5 minutes.
Read more
API Reference
Full reference for every endpoint, parameter, and response shape.
Read more
Integrations
Connect Aria to Slack, Notion, GitHub, HubSpot and 100+ other tools.
Read more
Security & Compliance
SOC 2, GDPR, HIPAA, data residency options and encryption details.
Read more
Guides
Step-by-step tutorials for common workflows and use cases.
Read more
Support
Can't find what you need? Reach our team directly.
Read more
Base URL: https://api.aria.ai/v1