Skip to content

Agent information

The Agent Information endpoint provides a comprehensive overview of your integration settings. It allows you to retrieve and verify details.


fetch('https://API-PROVIDER/api/v1/agent-info', {
headers: {
'Api-Id': 'YOUR_SECRET_TOKEN',
'Api-Key': 'YOUR_SECRET_TOKEN'
}
})

ParameterTypeDescription
agent_idstringYour unique agent identifier
agent_typestringTransfer or Seamless
currencystringGame currency (KRW, JPY, CNY, PHP, HKD, MYR, THB, EUR, TWD, VND, INR, BDT)
callback_urlstringRegistered webhook URL
balancenumberInitial balance
bp_minnumberMinimum bet for Natural (Banker/Player)
bp_maxnumberMaximum bet for Natural (Banker/Player)

Successful Response

interface AgentInfoResponse {
agent_id: string
agent_type: string
currency: string
callback_url: string
balance: number
bp_min: number
bp_max: number
}