Telluvian

Quickstart

Create a key, add credit, and make your first scored request.

1. Create an API key

Mint one in the dashboard. The key is shown once and cannot be recovered afterwards, so store it somewhere safe.

2. Add credit

Billing is prepaid and denominated in dollars — a $25 payment adds $25 of API credit. Add credit; requests are refused with a 402 until your balance is positive.

3. Send a request

curl https://api.telluvian.ai/v1/chat/completions \
  -H "Authorization: Bearer $TELLUVIAN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/gemma-4-31B-it",
    "messages": [{"role": "user", "content": "When was the Eiffel Tower built?"}]
  }'

Which model?

GET /v1/models lists everything you can call, with its current price and whether the probe runs natively or by replay. See Pricing.