Cart
Your shopping cart, grouped by seller. Adding items does not put them on hold — availability is checked at checkout.
- deliveryType: string nullable
Country requiredWhere your order will ship, as a two-letter ISO 3166-1 alpha-2 code, set by
POST /v1/cart/items.nullwhile your cart is empty. - itemType: integer
Count min:-9007199254740991max:9007199254740991requiredTotal units across every item in your cart.
- sellersType: array object[] · CartSellerGroup[]required
Your cart's items, grouped by seller. Each group ships as its own parcel.
Your cart's items from one seller. Each seller's items ship together as one parcel; the seller's shipping charge is under
seller.shipping.- itemsType: array object[] · CartItem[]required
The items you are buying from this seller.
One listing in your cart: the product it sells, the card's condition and language, how many units you are buying, and the price per unit.
unitPriceis the price when you added the item — if the seller lowers their price your cart follows, and if they raise it the item is removed from your cart. - itemsType: object · Money
Subtotal requiredA monetary amount as a decimal in the currency's major unit paired with its currency code —
{ amount: 14.99, currency: "USD" }means $14.99. - sellerType: object · ListingSellerrequired
The seller behind a Marketplace listing.
{
"deliveryCountry": "FR",
"itemCount": 2,
"sellers": [
{
"seller": {
"id": "665f3a2b1c8d4e9f7a6b5c4d",
"username": "north_arena_tcg",
"country": "DE",
"type": "pro",
"rating": {
"average": 4.9,
"count": 214
},
"shipping": {
"amount": 3.5,
"currency": "EUR"
}
},
"itemsSubtotal": {
"amount": 9,
"currency": "EUR"
},
"items": [
{
"listingId": "665f3a2b1c8d4e9f7a6b5c52",
"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"
},
"addedAt": "2026-07-12T15:02:00.000Z"
}
]
}
]
}