Create an API key
API Keys Connect your wallet and sign a scoped key-management challenge.
GPU Router speaks a strict, text-only subset of the OpenAI Chat Completions API.
Connect your wallet and sign a scoped key-management challenge.
Only models in the fresh gateway catalog can be routed.
Use your existing OpenAI client with a different base URL.
The integration contract is ready, but live inference admission is currently disabled on this network.
curl 'https://gpu-router-accounts-production.up.railway.app/v1/chat/completions' \
-H "Authorization: Bearer $GPU_ROUTER_API_KEY" \
-H 'Content-Type: application/json' \
--data-binary '{
"model": "your-model-id",
"messages": [
{
"role": "user",
"content": "Hello!"
}
],
"max_tokens": 256
}'The gateway estimates request cost and chooses the cheapest eligible primary route for this exact model ID.
It reserves worst-case credits before dispatch, then settles or refunds against reported usage.
Set stream: true; the gateway requests an upstream usage frame for final settlement.