# Get Trades (deprecated) > NOTE: This endpoint is not supported anymore. Please have a look at Trades v3 Get trades filtered on own orders or not with the my-parameter and date based on `start and end. In the Trade endpoint, we have introduced pagination. The reason is that when you apply no filters your request won’t be time-out and you won’t be overloaded with data. When you don’t provide any parameters, the application will return with the last 100 trades and give you the option to get the next 100 trades. To do this you use the cursor parameter with nextCursor` value that has been given to you from the response. It makes use of pagination V1.0 Endpoint: GET /public-api/2.0/electricity/trades Version: 1.0 Security: api-key ## Query parameters: - `cursor` (string) Next cursor provided by the response of a previous request. - `count` (integer) Number of trades to return. A number between 1 and 100. - `my_own_trades` (boolean) Return only your own trades or only trades that are not yours. A trade is considered your own trade if you were the buyer or the seller. - `participantId` (string) Filter on participantId. This is only useful for brokers. - `orderId` (string) Filter on orderId. - `tradeId` (string) Filter on tradeId. - `start` (integer) Return trades created after the given timestamp. Value must be a Unix timestamp in milliseconds. - `end` (integer) Return trades created before the given timestamp. Value must be a Unix timestamp in milliseconds. - `field` (string) The field to filter on start and/or end if specified Enum: "START", "END", "EXECUTED" - `timeblocks` (string) Filter on timeblocks. Enum: "INTRADAY", "EXPOST", "GOPACS" ## Response 200 fields (application/json): - `data` (array, required) - `data.id` (string, required) - `data.productType` (string) Enum: "ELECTRICITY", "GAS" - `data.timeblock` (string) Enum: "BASELOAD", "PEAK", "OFFPEAK", "INTRADAY", "EXPOST", "GOPACS" - `data.buyerId` (string) - `data.sellerId` (string) - `data.orderIdBuy` (string) - `data.orderIdSell` (string) - `data.quantity` (number) - `data.start` (integer) Example: 1694422800000 - `data.end` (integer) Example: 1694422800000 - `data.price` (number) - `data.duration` (number) - `data.executed` (integer) Example: 1694422800000 - `data.type` (string) - `data.buyerEan` (string) - `data.sellerEan` (string) - `data.buyOrderMetadata` (object) - `data.sellOrderMetadata` (object) - `data.tradeId` (string) - `data.mwhTraded` (number) - `data.tradedForIdcons` (boolean) - `data.traderUsernameBuy` (string) - `data.traderUsernameSell` (string) - `data.reverted` (boolean) - `nextCursor` (string) ## Response 400 fields (*/*): - `errors` (array) ## Response 412 fields (*/*): - `errors` (array) ## Response 204 fields ## Response 403 fields