FLOPEX
Playground

Quickstart

From signup to first inference in under 60 seconds.

1. Sign up and get your API key

Create an account on the Flopex homepage — your API key is shown once. Save it immediately; it cannot be retrieved later.

New accounts include $10 in free wallet credit to try the API.

2. Make your first request

import requests

response = requests.post(
    "https://api.flopex.ai/v1/inference",
    headers={"Authorization": "Bearer sk_live_YOUR_KEY"},
    json={
        "model": "llama-3.1-8b",
        "input": "Explain GPU compute in one sentence.",
        "max_output_tokens": 128
    }
)

data = response.json()
print(data["output_text"])
print(f"Cost: {data['billing']['cost_display']}")
print(f"Balance: {data['billing']['balance_remaining_usd']:.6f}")

3. Check your balance

curl https://api.flopex.ai/v1/balance \
  -H "Authorization: Bearer sk_live_YOUR_KEY"

4. Next steps