CartSellerGroup
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.- addedType: string Format: date-time
At requiredWhen you added the item to your cart.
- conditionType: string · CardConditionenumnullablerequired
The card's condition:
NM,LP,MP,HP, orDMG.nullwhen the card is graded or the product is sealed.Card condition: NM (Near Mint), LP (Lightly Played), MP (Moderately Played), HP (Heavily Played), DMG (Damaged).
values- N
M Near Mint.
- L
P Lightly Played.
- M
P Moderately Played.
- H
P Heavily Played.
- D
M G Damaged.
- finishType: stringrequired
The card's finish, e.g.
Standard,Foil,Reverse Holo. - gradedType: object · Gradednullablerequired
Grading details when the card is graded.
nullfor raw cards and sealed products.Grading details for a slabbed card.
- imageType: string nullable
Url requiredThe product's image.
nullwhen there is none. - languageType: string nullablerequired
The card's language as a two-letter code, e.g.
en,fr.nullwhen the listing has no language. - lineType: object · Money
Total 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. - listingType: string
Id requiredThe listing this item comes from. Listing ids come from
GET /v1/products/{productId}/listingsand from the optimizer's run results. - productType: integer
Id min:-9007199254740991max:9007199254740991requiredThe catalogue product the listing sells.
- productType: string
Name requiredThe product's name.
- quantityType: integermin:-9007199254740991max:9007199254740991required
How many units of the listing are in your cart.
- unitType: object · Money
Price 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.
- 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.- amountType: numberrequired
Decimal amount in the currency's major unit (e.g.
5.23for €5.23). 2 decimal places for EUR/USD/GBP/CHF/CAD/AUD. - currencyType: string enumrequiredvalues
- U
S D US Dollar.
- E
U R Euro.
- G
B P British Pound.
- C
A D Canadian Dollar.
- C
H F Swiss Franc.
- sellerType: object · ListingSellerrequired
The seller behind a Marketplace listing.
- countryType: stringrequired
The seller's country as a two-letter ISO 3166-1 alpha-2 code.
- idType: stringrequired
Stable opaque identifier for the seller. Do not parse.
- ratingType: object · OrderPartyRatingrequired
A party's average review score and the number of reviews behind it.
- shippingType: object · Moneynullablerequired
What this seller charges to ship your order to your delivery country.
nullwhen no delivery country applies.A monetary amount as a decimal in the currency's major unit paired with its currency code —
{ amount: 14.99, currency: "USD" }means $14.99. - typeType: string enumrequired
proif they sell as a registered company,individualif they sell as a private person.values- pro
You sell as a registered company.
- individual
You sell as a private person.
- usernameType: stringrequired
The seller's public handle.
{
"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"
}
]
}