Arbitrage involves risk - odds change rapidly, no guaranteed profits.

Docs
Getting Started

Getting Started

How to get your API key and authenticate requests.

Get Your API Key

  1. Log in to your ArbBets Dashboard
  2. Navigate to the API section
  3. 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_KEY

Make 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.