OrderParty
The other party on an order — the buyer on a sale, the seller on a purchase — with their public profile and reputation.
- avatarType: string nullable
Url requiredTheir avatar URL.
nullwhen they haven't uploaded one. - countryType: string nullablerequired
Their country as a two-letter ISO 3166-1 alpha-2 code (e.g.
FR,US).nullwhen unknown. - idType: stringrequired
Stable opaque identifier for the other party. 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.
- reliabilityType: object · OrderPartyReliabilitynullablerequired
A seller's recent order-handling stats.
nullfor a buyer, or when there aren't enough recent orders to report.A seller's recent order-handling stats over a rolling window.
- avgType: number
Ship Time Hours min:0nullablerequiredAverage hours between an order being placed and marked shipped.
nullwhen nothing shipped in the window. - completedType: integer
Count min:0max:9007199254740991requiredOf those, how many completed successfully.
- completionType: number
Rate min:0max:1nullablerequiredShare of orders completed, from 0 to 1.
nullwhen there aren't enough orders to compute it. - orderType: integer
Count min:0max:9007199254740991requiredOrders received in the recent window that the rates are computed over.
- typeType: string enumnullablerequired
proif they sell as a registered company,individualif they sell as a private person.nullwhen they aren't a seller.values- pro
You sell as a registered company.
- individual
You sell as a private person.
- usernameType: stringrequired
Their public handle.
{
"id": "665f3a2b1c8d4e9f7a6b5c4d",
"username": "north_arena_tcg",
"avatarUrl": "https://images.cardnexus.com/avatars/north_arena_tcg.png",
"country": "GB",
"type": "pro",
"rating": {
"average": 4.9,
"count": 214
},
"reliability": {
"orderCount": 96,
"completedCount": 94,
"completionRate": 0.98,
"avgShipTimeHours": 21.4
}
}