Getting started
This page is a placeholder while the MVP is being built. The final walk-through will cover:
- Sign up at onehop.ai and top up your wallet.
- Create an API key in the Platform console.
- Point any OpenAI-compatible SDK at
https://api.onehop.ai/v1. - Send your first request and watch usage stream into the dashboard.
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" }] }'