# Get Recent Trades of Participant The recent trades will only return your trades back from the last 2 days. The participantId is only useful for brokers. The pagination works slightly different than the other endpoints. It will return the first 1000 results and after that you can add the pageNumber as a parameter to get the remaining results. Endpoint: GET /public-api/2.0/electricity/trades/recent Version: 1.0 Security: api-key ## Query parameters: - `participantId` (string) - `pageNumber` (integer) ## Response 200 fields (application/json): - `id` (string, required) - `productType` (string, required) Enum: "ELECTRICITY", "GAS" - `timeblock` (string) Enum: "BASELOAD", "PEAK", "OFFPEAK", "INTRADAY", "EXPOST", "GOPACS" - `buyerId` (string, required) - `sellerId` (string, required) - `orderIdBuy` (string, required) - `orderIdSell` (string, required) - `quantity` (number, required) - `start` (string, required) - `end` (string, required) - `price` (number, required) - `duration` (number, required) - `executed` (string, required) - `type` (string, required) - `buyerEan` (string) - `sellerEan` (string) - `buyOrderMetadata` (object) - `sellOrderMetadata` (object) - `mwhTraded` (number, required) - `tradedForIdcons` (boolean, required) - `traderUsernameBuy` (string, required) - `traderUsernameSell` (string, required) - `reverted` (boolean, required) ## Response 400 fields (*/*): - `errors` (array) ## Response 412 fields (*/*): - `errors` (array) ## Response 204 fields