Skip to main content
GET
/
accounts
List accounts for client
curl --request GET \
  --url https://v2.55-tech.com/accounts \
  --header 'X-API-Key: <api-key>'
[
  {
    "bookmaker": "pinnacle",
    "username": "pinnacle_main",
    "client": "demo",
    "password": "***",
    "balance": 5000,
    "active": true,
    "priority": 10,
    "maxStake": 1000,
    "minStake": 5,
    "currencyId": "USD",
    "verifyBetslip": false,
    "meta": {},
    "createdAt": "2026-01-01T00:00:00Z",
    "updatedAt": "2026-02-01T12:00:00Z"
  },
  {
    "bookmaker": "betfair-ex",
    "username": "betfair_user",
    "client": "demo",
    "password": "***",
    "balance": 2500,
    "active": true,
    "priority": 5,
    "maxStake": null,
    "minStake": 2,
    "currencyId": "GBP",
    "verifyBetslip": true,
    "meta": {
      "appKey": "***"
    },
    "createdAt": "2026-01-05T00:00:00Z",
    "updatedAt": "2026-02-05T12:00:00Z"
  }
]

Authorizations

X-API-Key
string
header
required

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

Query Parameters

bookmaker
string | null

Filter by bookmaker slug

Response

List of accounts for the authenticated client

bookmaker
string

Bookmaker slug

username
string

Account username

client
string

Client name that owns this account

password
string | null

Always masked as '***'

balance
number

Current balance

active
boolean

Whether account is active

priority
integer

Priority for account selection (higher = preferred)

maxStake
number | null

Maximum stake override

minStake
number | null

Minimum stake override

currencyId
string

Account's trading currency

verifyBetslip
boolean

Force live odds fetch from bookmaker API

meta
object

Additional metadata

createdAt
string | null

Creation timestamp (ISO 8601)

updatedAt
string | null

Last update timestamp (ISO 8601)