Seligo API documentation

One control plane for every model you use — from the big labs to your own private GPUs. This is the customer-facing reference for building against the Seligo API and for spinning up a private GPU through that same API.

Base URL

All API calls go to https://api.seligo.cloud/v1. The router is OpenAI-compatible, so any client that speaks the OpenAI API can point at it.

export SELIGO_BASE="https://api.seligo.cloud/v1"

How it fits together

Quick starts

WhatWhere to look
Create your org, key & balanceGetting started
Call a public modelAPI reference — chat
List available modelsAPI reference — models
Start / infer on / stop a private GPUPrivate GPU
Try it now: once you have a key, this is all you need for a first call. Replace rk-… and pick any catalogue model from GET /v1/models.
curl -s "$SELIGO_BASE/chat/completions" \
  -H "authorization: Bearer rk-…" \
  -H "content-type: application/json" \
  -d '{"model":"scaleway/Meta-Llama-3-1-8B-Instruct",
       "messages":[{"role":"user","content":"Say hello"}]}'