ListingSeller
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.
- averageType: numbermin:1max:5nullablerequired
Average review score from 1 to 5.
nullwhen there are no reviews yet. - countType: integermin:0max:9007199254740991required
Number of reviews behind the average.
- 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.- 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.
- 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.
{
"id": "665f3a2b1c8d4e9f7a6b5c4d",
"username": "north_arena_tcg",
"country": "DE",
"type": "pro",
"rating": {
"average": 4.9,
"count": 214
},
"shipping": {
"amount": 3.5,
"currency": "EUR"
}
}