Ship intelligence
in three lines.
One endpoint, every LucidQuery model. Drop-in compatible with the OpenAI SDK. Point the base URL at us and start streaming.
from openai import OpenAI
client = OpenAI(
api_key="lq_live_...",
base_url="https://api.lucidquery.com/v1",
)
stream = client.chat.completions.create(
model="lucidquery-agi-01-frontier",
messages=[{"role": "user", "content": "Explain quantum error correction."}],
stream=True,
)
for chunk in stream:
print(chunk.choices[0].delta.content or "", end="")Create a key
Generate an API key from your dashboard in one click.
Point your SDK
Set the base URL to api.lucidquery.com/v1 and drop in your key.
Stream a response
Call chat/completions and read tokens as they arrive.
One API, every model
Scored on LucidQuotient, our in-house benchmark. Pick the right intelligence for the job; switch models with a single string.
Swift
Fast, efficient intelligence for high-volume, everyday work.
Frontier
Deep reasoning for the problems that actually matter.
Already know our API. It's OpenAI's
Use the official OpenAI client in any language. Point the base URL at LucidQuery, pass your key, and everything you already wrote keeps working.
https://api.lucidquery.comEvery endpoint lives under /v1.
https://api.lucidquery.com/v1The OpenAI SDK appends /chat/completions itself.
from openai import OpenAI
client = OpenAI(
api_key="lq_live_...",
base_url="https://api.lucidquery.com/v1",
)
stream = client.chat.completions.create(
model="lucidquery-agi-01-frontier",
messages=[{"role": "user", "content": "Explain quantum error correction."}],
stream=True,
)
for chunk in stream:
print(chunk.choices[0].delta.content or "", end="")curl https://api.lucidquery.com/v1/models \
-H "Authorization: Bearer $LUCIDQUERY_API_KEY"Everything around the model
The parts you'd otherwise build yourself: billing, keys, usage, and streaming, handled.
OpenAI-compatible
Keep your SDK. Change one line: the base URL.
Streaming by default
Token-by-token SSE for responsive interfaces.
Usage analytics
Per-key requests and token counts, live.
Pay as you go
Top up in € via Stripe. No subscriptions.
Key management
Create, rotate, and revoke keys instantly.
Web-grounded
Answers backed by live sources when it counts.
Only pay for what you use
Top up credits in euros via Stripe, set a low-balance alert, and watch usage per key. No seats, no monthly minimum.