DocsGetting StartedQuickstart
Quickstart
Get up and running with Rfox AI in under five minutes.
Introduction
Rfox AI is a unified platform for AI creation. A single credit balance powers writing, images, video, voice, document analysis and automation — so you can pick the right model for the job without juggling subscriptions.
Every request draws from your shared credit balance. Credits never expire and include a full commercial license.
Install & Setup
Install the SDK and authenticate with your workspace key.
npm install @aikc/sdk
import { AIKC } from "@aikc/sdk";
const client = new AIKC({
apiKey: process.env.AIKC_API_KEY,
});Your first request
Every service uses the same interface. Here's a writing request:
const result = await client.writing.generate({
prompt: "A launch announcement for our new AI platform",
tone: "confident",
length: "medium",
});The response includes token usage and the credits consumed for observability and cost tracking.
How credits work
Writing5 credits / request
Images10 credits / request
Voice3 credits / request
Video20 credits / request
Documents2 credits / request
Automation15 credits / request