Skip to main content
This guide gets you from zero to a working API call in a few minutes. You’ll create a free Boole account — no credit card required — receive $20 in credits (enough for roughly 1 million tokens), generate an API key, and stream a response from Llama 3.3 70B. Because Boole is fully OpenAI-compatible, you can use the OpenAI SDK in any language you already know.

Steps

1

Create your account

Go to booleinference.com/signup and create a free account. No credit card is required at signup — you receive $20 in free credits automatically, good for roughly 1 million input tokens on Llama 3.3 70B.
2

Generate an API key

After signing in, navigate to Settings → API Keys in the dashboard and click Create new key. Give it a descriptive name, then copy the key — it is only shown once.
Store your API key securely. Never commit it to source control or expose it in client-side code. If a key is compromised, revoke it immediately from the dashboard and generate a replacement.
3

Set the environment variable

Export your key as an environment variable so your code can read it without hard-coding the value.
Add this line to your shell profile (.bashrc, .zshrc, etc.) to persist it across sessions.
4

Make your first API call

Use the code sample below for your preferred language or tool. All three examples stream the response token by token.
Expect your first token in approximately 62 ms for Llama 3.3 70B. The default rate limit is 60 requests/sec per API key — contact support@boole.ai to request an increase.
The same code runs against your local Boole server — just swap base_url from https://api.boole.dev/v1 to http://localhost:8000/v1. This makes it trivial to develop locally and deploy to the cloud without changing any other logic.

Pricing at a Glance

All cloud API usage is billed per token (input and output separately) or per minute for audio models. Prices listed below decrease automatically as the nightly compiler produces faster, more efficient model variants — you never need to do anything to benefit.
MTok = 1 million tokens. See the full pricing page for all 42 models and volume discount tiers.

Next Steps

API Keys

Rotate, scope, and revoke API keys from your dashboard.

Available Models

Browse all 42 models with context lengths, capabilities, and pricing.

API Reference

Complete reference for every endpoint, request parameter, and response field.