Quick Start
Get started with Binom.Router in just a few minutes by following this simple guide.
Step 1: Registration
Go to the registration page and create a new account. After confirming your email, you will get access to your personal dashboard.
Step 2: Create an API Key
You will need an access key to interact with the API:
- Log in to your personal dashboard.
- Go to the "API Keys" section.
- Click the "Create New Key" button.
- Copy and save the generated key. Warning: The key is displayed only once!
Step 3: Your First Request
Now you are ready to send your first request to Binom.Router. We use a format that is fully compatible with OpenAI, so you can use standard libraries or a simple curl.
Replace $YOUR_API_KEY with the key you obtained in the previous step:
curl https://api.binom-router.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $YOUR_API_KEY" \
-d '{
"model": "gpt-4o",
"messages": [
{
"role": "user",
"content": "Hello! In a few words, what is Binom.Router?"
}
]
}'
What's Next?
- Check out the full API Reference to explore all available parameters.
- Configure limits and quotas in your dashboard to control your spending.
- Integrate Binom.Router into your application using any library that supports the OpenAI API.