Get Specific Bookie Accounts

The API allows punters to start/stop specific bookmakers sessions

Endpoint

GET /bookieaccount/{id}

CURL example

curl -X GET 'https://betmatic.app/api/bookieaccount/1/' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Token {token}' \

Responses

Status
Meaning
Description
Schema

200

Success

See below

Response example

{
    "id": 1,
    "bookie": "TAB",
    "display_name": "testbot",
    "balance": 2.07,
    "bonus_balance": 0,
    "update_time": "2024-01-24T22:31:14.150727+11:00",
    "bot_ip": "",
    "bot_id": "01",
    "bot_running": false
},

Response Schema

Status Code 200

Name
Type
Description

id

integer

Id used in this system

bookie

string

name of the bookie

display_name

string

unique identity given by the user to identify session

balance

integer

Funds present in the bookie account

bonus_balance

integer

Funds for bonus present in the bookie account

bot_ip

string

proxy ip used while createing a session

bot_id

string

bot id on which bookie session is running

bot_running

boolean

bot status if bot is running or not

Last updated