Skip to main content
GET
/
bookmakers
List all bookmakers
curl --request GET \
  --url https://v2.55-tech.com/bookmakers \
  --header 'X-API-Key: <api-key>'
[
  {
    "bookmakerId": 1,
    "bookmaker": "pinnacle",
    "bookmakerName": "Pinnacle",
    "active": true,
    "maxStake": 10000,
    "minStake": 1
  },
  {
    "bookmakerId": 2,
    "bookmaker": "betfair-ex",
    "bookmakerName": "Betfair Exchange",
    "active": true,
    "maxStake": null,
    "minStake": 2
  },
  {
    "bookmakerId": 3,
    "bookmaker": "polymarket",
    "bookmakerName": "Polymarket",
    "active": true,
    "maxStake": null,
    "minStake": 1
  }
]

Authorizations

X-API-Key
string
header
required

API key for authentication. Contact contact@55-tech.com to obtain a key.

Response

List of supported bookmakers

bookmakerId
integer

Numeric bookmaker identifier

bookmaker
string

Bookmaker slug (e.g., 'pinnacle')

bookmakerName
string | null

Display name

active
boolean

Whether bookmaker is currently active

maxStake
number | null

Global max stake for this bookmaker

minStake
number | null

Global min stake for this bookmaker