Get bookmakers

To retrieve all the bookie names supported by Betmatic, you can make a GET request to the following endpoint:

Endpoint

GET /bookie/names/

CURL example


curl -X GET https://betmatic.app/api/bookie/names/ \
  -H 'Accept: application/json' \
  -H 'Authorization: Token {token}'

This will return a list of bookie names along with their corresponding IDs. You can use these IDs (not the names) to specify the target bookies when creating notifications or publishing picks.

Responses

Status
Meaning
Description
Schema

200

Success

See below

200 Response example

[
  {
    "id": 8,
    "title": "WishBet",
    "markets_unavailable": "BTP,SRM,TWIN,TPLC",  
    "enabled": true,
    "bonus_enabled": true,
    "note": "",
    "sports": true,
    "sports_bonus_enabled": false
  }
]

Response Schema

Status Code 200

Name
Type
Description

id

integer

This field represents the unique identifier for the bookmaker used by Betmatic

title

string

The full name of the bookmaker.

markets_unavailable

string

This field indicates the unavailable racing markets for this bookmaker. The markets are represented by short codes rather than full names. If there are multiple unavailable markets, they are separated by commas.

enabled

boolean

Indicates whether this bookmaker is supported.

sports

boolean

Indicates whether sports are supported.

sports_bonus_enabled

boolean

Indicates whether bonus bets are supported on sports.

bonus_enabled

boolean

Indicates whether bonus bets are supported on racing.

note

string

Description

Last updated