Skip to content

Wallet v3

The Wallet v3 provides an endpoint to retrieve the balances of a trader’s wallet and XBID wallet for a given participantId. Access requires an API key, and the response returns the current wallet balances.

Get Balance

Request

This endpoint will give you the balance of your trader wallet and XBID wallet participantId.

Security
api-key
Query
participantIdstring

ID of participant to get balance from. This is only useful for brokers.

GET
/public-api/3.0/electricity/wallets/balance
curl -i -X GET \
  'https://acc-trading.etpa.nl/public-api/3.0/electricity/wallets/balance?participantId=string' \
  -H 'api_key: YOUR_API_KEY_HERE'

Responses

Wallet balances

Body*/*
walletBalancenumber, (double)required
walletTypestringrequired
Enum:"XBID""TRADER"
Response
{
  "walletBalance": 0.1,
  "walletType": "XBID"
}