Skip to main content
POST
/
accounts
Create account
curl --request POST \
  --url https://v2.55-tech.com/accounts \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "bookmaker": "pinnacle",
  "username": "my_account",
  "password": "secret123",
  "balance": 1000,
  "active": true,
  "priority": 10,
  "maxStake": 500,
  "minStake": 1,
  "currencyId": "USD",
  "meta": {
    "affiliate": "xyz"
  }
}
'
{
  "bookmaker": "pinnacle",
  "username": "my_account",
  "client": "demo",
  "password": "***",
  "balance": 1000,
  "active": true,
  "priority": 10,
  "maxStake": 500,
  "minStake": 1,
  "currencyId": "USD",
  "verifyBetslip": false,
  "meta": {
    "affiliate": "xyz"
  },
  "createdAt": "2026-01-01T00:00:00Z",
  "updatedAt": "2026-01-15T12:00:00Z"
}

Authorizations

X-API-Key
string
header
required

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

Body

application/json
bookmaker
string
required

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

username
string
required

Account username

password
string | null

Account password

balance
number
default:0

Initial balance

active
boolean
default:true

Whether account is active

priority
integer
default:0

Priority for account selection (higher = preferred)

maxStake
number | null

Maximum stake override

minStake
number | null

Minimum stake override

currencyId
string
default:USD

Account's trading currency (e.g., 'USD', 'EUR')

meta
object

Additional metadata

Response

Account created successfully

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)