Arvex API Documentation
Welcome to the Arvex API documentation. Arvex provides a zero-trust, hardware-attested environment for running large language models.
OpenAI Compatibility
The Arvex API is designed as a drop-in replacement for the OpenAI API. You can use standard OpenAI SDKs (Python, Node.js) by simply changing the `baseURL` and providing your Arvex API key.
import OpenAI from "openai";
const openai = new OpenAI({
apiKey: "arvex_...",
baseURL: "https://api.arvex.fun/v1"
});
Authentication & Security
All API requests must include an Authorization header with your Arvex API key. End-to-end client-side encryption ensures your prompts cannot be intercepted or read by Arvex operators.