Skip to main content
The Boole AI cloud API lets you run inference without any GPU hardware. It uses the same OpenAI-compatible interface as the local binary — just swap the base URL and add your API key. Every model available locally is also available via the cloud API, at the same slugs, with the same request and response shapes.

Endpoint

All API requests go to:
Every public endpoint is available under this base URL — /chat/completions, /completions, /audio/transcriptions, and /models. Point any OpenAI-compatible SDK at this URL and it works without further changes.

Authentication

Include your API key in the Authorization header on every request:
Store your key in an environment variable rather than hardcoding it. Retrieve or rotate your keys at any time from your API keys page.
Never commit your API key to source control. Treat it like a password — if it is exposed, rotate it immediately from the API keys page.

Quick Test

Run this curl command to confirm your key works and the endpoint is reachable:
A 200 response with a choices array confirms everything is set up correctly.

Cloud vs. Local

Choose the deployment mode that fits your latency, privacy, and infrastructure requirements. The two modes are fully interchangeable at the API level.
Boole AI does not log, store, or train on your prompts or completions. Requests are processed in memory and discarded immediately after the response is sent. Boole AI is SOC 2 Type II certified — the zero-retention policy is an audited control, not just a stated intent.

Pricing

The cloud API is billed per token. A few example prices: New accounts receive $20 in free credits (approximately 1 million tokens) with no credit card required. See the full pricing page for all 42 models.
The cloud API and local binary are fully interchangeable. Switch between them by changing a single URL — no other code changes needed. Use the cloud API during development or when you need to burst beyond local GPU capacity, and the local binary when you need offline access or full data isolation.