Docs
Getting Started
Getting Started
How to get your API key and authenticate requests.
Get Your API Key
- Log in to your ArbBets Dashboard
- Navigate to the API section
- Copy your API key
Your API key is shown in the dashboard and used to authenticate all requests.
Authenticate Requests
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYMake Your First Request
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://getarbitragebets.com/api/internal/arbs-full_2?investment=100&min_profit=1.9"Check Your Credits
Each API call consumes credits. Monitor your usage in the dashboard. The arbs-full endpoint costs 1 credit per call.
Base URL
All API requests use this base URL:
https://getarbitragebets.com
Response Format
All responses are JSON. Successful requests return data directly. Errors return:
{
"error": "Error message"
}Rate Limits
API requests are rate limited. If you exceed the limit, you'll receive a 429 status code. Wait and retry.