Skip to content
OneHop

Getting started

This page is a placeholder while the MVP is being built. The final walk-through will cover:

  1. Sign up at onehop.ai and top up your wallet.
  2. Create an API key in the Platform console.
  3. Point any OpenAI-compatible SDK at https://api.onehop.ai/v1.
  4. Send your first request and watch usage stream into the dashboard.
Terminal window
curl https://api.onehop.ai/v1/chat/completions \
-H "Authorization: Bearer $ONEHOP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5",
"messages": [{ "role": "user", "content": "Say hi from Onehop" }]
}'