Skip to content

XBID Trades v1

This request will give you all your XBID trades from the last 48 hours.

Get Recent XBID Trades of Participant

Request

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.

Security
api-key
Query
participantIdstring
pageableobject(Pageable)required
Example:page=0&size=1
GET
/public-api/1.0/xbid/trades/recent
curl -i -X GET \
  'https://acc-trading.etpa.nl/public-api/1.0/xbid/trades/recent?participantId=string&pageable=page%3D0%26size%3D1' \
  -H 'api_key: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
totalElementsinteger, (int64)
totalPagesinteger, (int32)
sizeinteger, (int32)
contentArray of objects(XbidTradeApiQueryResponse)
numberinteger, (int32)
sortobject(SortObject)
firstboolean
lastboolean
numberOfElementsinteger, (int32)
pageableobject(PageableObject)
emptyboolean
Response
{ "totalElements": 0, "totalPages": 0, "size": 0, "content": [ {} ], "number": 0, "sort": { "empty": true, "sorted": true, "unsorted": true }, "first": true, "last": true, "numberOfElements": 0, "pageable": { "offset": 0, "sort": {}, "paged": true, "pageSize": 0, "pageNumber": 0, "unpaged": true }, "empty": true }