List your sales
Returns your sales — orders where you are the seller — as a cursor-paginated list, newest first.
Each item carries the order, its items and totals, and the buyer you sold to: their handle, country, review score, and recent order-handling stats.
Filter with status (repeatable) and the placedFrom / placedTo date range. Walk the full set by following pagination.nextCursor: pass it back as cursor until it comes back null. limit defaults to 50, maximum 100.
Requires the sales:read scope.
- Type: stringcursor
- Type: integerlimitmin:1max:100
Integer numbers.
- Type: array string[] · enumstatus
Filter to orders in any of these statuses. Repeat the parameter for multiple values, e.g.
?status=shipped&status=delivered.values- pending
_shipment - cancellation
_requested - cancelled
_buyer - cancelled
_seller - cancelled
_auto
- Type: string · enum
Where the order is in its lifecycle.
pending_shipmentis awaiting dispatch;shippedanddeliveredtrack the parcel;completedis closed and paid out;cancelled_*andresolved_*are the terminal cancellation and dispute outcomes.values- pending
_shipment Awaiting dispatch.
- cancellation
_requested The buyer asked to cancel; awaiting a response.
- cancelled
_buyer Cancelled — the buyer's cancellation was accepted.
- cancelled
_seller Cancelled by the seller.
- cancelled
_auto Cancelled automatically by CardNexus.
- Type: string · Format: date-timeplaced
From An ISO 8601 date-time in UTC, e.g.
2024-08-14T10:23:11.000Z. - Type: string · Format: date-timeplaced
To An ISO 8601 date-time in UTC, e.g.
2024-08-14T10:23:11.000Z.
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
curl https://public-api.cardnexus.com/v1/sales \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"orderNumber": "OR-ASNBC-1",
"status": "shipped",
"placedAt": "2026-06-13T15:02:00.000Z",
"updatedAt": "2026-06-14T09:12:00.000Z",
"shippedAt": "2026-06-14T09:12:00.000Z",
"deliveredAt": null,
"completedAt": null,
"currency": "EUR",
"items": [
{
"productId": 50212,
"productName": "Dark Magician (SDMY-EN001)",
"imageUrl": "https://images.cardnexus.com/yugioh/SDMY-EN001.png",
"condition": "NM",
"language": "en",
"finish": "Standard",
"graded": null,
"quantity": 2,
"unitPrice": {
"amount": 4.5,
"currency": "EUR"
},
"lineTotal": {
"amount": 9,
"currency": "EUR"
},
"inventoryId": "665f3a2b1c8d4e9f7a6b5c4d",
"customId": "YRG|5555-5DS1-2EX-006-f-2-2008-08-01"
}
],
"subtotal": {
"amount": 9,
"currency": "EUR"
},
"shippingAmount": {
"amount": 3.5,
"currency": "EUR"
},
"sellerFee": {
"percentage": 5,
"amount": {
"amount": 0.45,
"currency": "EUR"
}
},
"payout": {
"amount": {
"amount": 12.05,
"currency": "EUR"
},
"eligibleAt": "2026-06-21T09:12:00.000Z",
"paidOutAt": null
},
"buyer": {
"id": "665f3a2b1c8d4e9f7a6b5c4d",
"username": "north_arena_tcg",
"avatarUrl": "https://images.cardnexus.com/avatars/north_arena_tcg.png",
"country": "GB",
"type": "individual",
"rating": {
"average": 4.9,
"count": 51
},
"reliability": null
}
}
],
"pagination": {
"nextCursor": "b2Zmc2V0OjUw"
}
}