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-ABP-API-KEY: <api-key>' \
  --data '
{
  "bookmaker": "<string>",
  "username": "<string>",
  "password": "<string>",
  "balance": 0,
  "active": true,
  "priority": 0,
  "maxStake": 123,
  "minStake": 123,
  "currencyId": "USD",
  "meta": {}
}
'
{
  "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-ABP-API-KEY
string
header
required

API key for authentication. Contact admin to obtain a key.

Body

application/json

Request body for creating an account.

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
Meta · object

Additional metadata

Response

Account created successfully