actor
parameter (buyer or seller) and the state
parameter (bought, paid, sent, received, lost, cancelled). Only orders for the authenticated user are returned.Attention: Although it's possible to use this request unpaginated, it will redirect to the paginated request if the response would contain more than 100 entities.
https://api.cardmarket.com/ws/v1.1/orders/:actor/:state[/:start]
actor
seller
or 1
buyer
or 2
state
bought
or 1
paid
or 2
sent
or 4
received
or 8
lost
or 32
cancelled
or 128
start
1. Returns orders 101 to 200 (partial content), where the authenticated user is seller and that are marked as received (i.e. all completed orders)
GET https://api.cardmarket.com/ws/v1.1/orders/seller/received/101
or
GET https://api.cardmarket.com/ws/v1.1/orders/1/8/101
2. Returns all orders, where the authenticated user is buyer and that are marked as sent
GET https://api.cardmarket.com/ws/v1.1/orders/buyer/sent
or
GET https://api.cardmarket.com/ws/v1.1/orders/2/4