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
Security
api-key
GET
curl -i -X GET \
'https://acc-trading.etpa.nl/public-api/2.0/electricity/trades?cursor=string&count=100&my_own_trades=true&participantId=string&orderId=string&tradeId=string&start=0&end=0&field=START&timeblocks=INTRADAY' \
-H 'api_key: YOUR_API_KEY_HERE'Response
{ "data": [ { … } ], "nextCursor": "string" }