Skip to content

Wallet v2

The Wallet V2 provides wallet data about a participant and it will give you the transactions. The Wallet can be used by participant who has reporting, trade or wallet access.

Get Transactions

Request

Get wallet transactions by participant ID between start (exclusive) and end (exclusive) dates. The number of transactions returned can be limited using the count with max 100. Cursor is used for paging on id.

Security
api-key
Query
cursorstring

nextCursor provided by a previous response

countinteger, (int32), [ 1 .. 100 ]

Number of wallet transactions to return

Default:100
participantIdstring

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

startinteger, (int64)required

Fetch wallet transactions with the filter field since Unix timestamp in milliseconds (exclusive).

endinteger, (int64)required

Fetch wallet transactions with the filter field until Unix timestamp in milliseconds (exclusive).

GET
/public-api/2.0/electricity/wallets/transactions
curl -i -X GET \
  'https://acc-trading.etpa.nl/public-api/2.0/electricity/wallets/transactions?cursor=string&count=100&participantId=string&start=0&end=0' \
  -H 'api_key: YOUR_API_KEY_HERE'

Responses

Requested transactions

Bodyapplication/json
dataArray of objects(PublicApiWalletEntry)required
nextCursorstring
Response
{ "data": [ {} ], "nextCursor": "string" }