Skip to main content
Get your first inference response in under 5 minutes.
1

Create an account

Go to sciforium.com and sign up with email/password or Google SSO. Note: Sciforium is a prepaid platform — you’ll need to purchase credits before making your first API call.
2

Purchase credits

Navigate to Billing in the top navigation bar and add credits via Stripe. The minimum purchase is $5.
3

Create an API key

  1. Navigate to API Keys in the left sidebar.
  2. Click + Create API Key in the top right.
  3. Give your key a name and click Create.
  4. Copy your key immediately — it is displayed only once.
4

Make your first request

Replace YOUR_API_KEY with the key you just created.
curl https://api.sciforium.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-r1-distill-llama-8b",
    "messages": [
      { "role": "user", "content": "Explain what Sciforium does in one sentence." }
    ]
  }'
You should receive a JSON response with the model’s completion. You’re live.