# Get Transactions 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. Endpoint: GET /public-api/2.0/electricity/wallets/transactions Version: 1.0 Security: api-key ## Query parameters: - `cursor` (string) Next cursor provided by a previous response - `count` (integer) Number of wallet transactions to return - `participantId` (string) ID of participant to get transactions from. This is only useful for brokers. - `start` (integer, required) Fetch wallet transactions with the filter field since Unix timestamp in milliseconds (exclusive). - `end` (integer, required) Fetch wallet transactions with the filter field until Unix timestamp in milliseconds (exclusive). ## Response 200 fields (application/json): - `data` (array, required) - `data.id` (string) - `data.participantId` (string, required) - `data.date` (integer, required) Example: 1465641045 - `data.orderId` (string) - `data.action` (string, required) Enum: "BUY", "SELL", "WITHDRAWAL", "DEPOSIT", "REFUND", "CONGESTION", "WALLET_CORRECTION_DELETED_PARTICIPANT", "WALLET_CORRECTION_ETPA_PARTICIPANT", "RECEIVE_FROM_XBID_WALLET", "SEND_TO_XBID_WALLET", "RECEIVE_FROM_AUCTION_WALLET", "SEND_TO_AUCTION_WALLET" - `data.type` (string) Enum: "TRANSFER", "IDEAL" - `data.amount` (number, required) - `data.congestionSpreadOrderId` (string) - `data.tradeIds` (array, required) - `data.info` (object) - `nextCursor` (string) ## Response 412 fields (*/*): - `errors` (array) ## Response 204 fields ## Response 400 fields ## Response 403 fields