# Get Recent XBID Trades of Participant The recent XBID trades API will return all the trades of the last 48 hrs. If participantId param is empty, endpoint will return trades owned by currently logged user only. Endpoint: GET /public-api/1.0/xbid/trades/recent Version: 1.0 Security: api-key ## Query parameters: - `participantId` (string) - `pageable` (object, required) Example: {"page":0,"size":1} ## Response 200 fields (application/json): - `totalElements` (integer) - `totalPages` (integer) - `first` (boolean) - `last` (boolean) - `size` (integer) - `content` (array) - `content.tradeId` (string, required) - `content.xbidTradeId` (integer, required) - `content.tradeQuantity` (number, required) - `content.mwhTraded` (number, required) - `content.tradePrice` (number, required) - `content.totalPrice` (number, required) - `content.deliveryStartTime` (string, required) - `content.deliveryEndTime` (string, required) - `content.executionTime` (string, required) - `content.buyOrderId` (string) - `content.sellOrderId` (string) - `content.buyParticipantId` (string) - `content.sellParticipantId` (string) - `content.buyIndividualId` (string) - `content.sellIndividualId` (string) - `content.buyIndividualFullName` (string) - `content.sellIndividualFullName` (string) - `content.counterNemo` (string, required) - `content.buyDeliveryArea` (object) - `content.buyDeliveryArea.country` (string, required) Country code Enum: "DE", "NL" - `content.buyDeliveryArea.eic` (string, required) Eic code Enum: "10YDE-VE-------2", "10YDE-RWENET---I", "10YDE-ENBW-----N", "10YDE-EON------1", "10YNL----------L" - `content.buyDeliveryArea.name` (string, required) Name Enum: "DE - 50HzT", "DE - AMP", "DE - TNG", "DE - TTG", "NL - TTN" - `content.sellDeliveryArea` (object) - `content.reverted` (boolean, required) - `content.buyOrderMetadata` (object) - `content.sellOrderMetadata` (object) - `number` (integer) - `sort` (object) - `sort.empty` (boolean) - `sort.sorted` (boolean) - `sort.unsorted` (boolean) - `numberOfElements` (integer) - `pageable` (object) - `pageable.offset` (integer) - `pageable.paged` (boolean) - `pageable.pageSize` (integer) - `pageable.pageNumber` (integer) - `pageable.unpaged` (boolean) ## Response 400 fields (*/*): - `errors` (array) ## Response 412 fields (*/*): - `errors` (array)