Quick Start
Make your first API0HUB request.
- Sign in at
https://www.api0hub.com. - Top up your balance in Wallet / Recharge.
- Create an API key in API Keys / Tokens.
- Send a test request:
curl https://www.api0hub.com/v1/chat/completions \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4.1-mini",
"messages": [
{ "role": "user", "content": "Say hello in one sentence." }
]
}'If the model cannot be found, check the exact model name in the console.