Quickstart

Run your first request in 60 seconds.

1. Get an API Key

  1. Create an account at relaygpu.comarrow-up-right

  2. Go to Dashboard → Keys

  3. Click Create Key

Save your key securely - it's only shown once. Or skip this and use guest mode (rate-limited).

2. Make a Request

curl -X POST https://relay.opengpu.network/v2/ollama/api/chat \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-oss:20b",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Response:

{
  "model": "gpt-oss:20b",
  "message": {
    "role": "assistant",
    "content": "Hello! How can I help you today?"
  },
  "done": true
}

3. Try Other Endpoints

Text-to-Speech:

Image Generation:

Video Generation: (2-20 minutes)

Next

Last updated