OrderParty

The other party on an order — the buyer on a sale, the seller on a purchase — with their public profile and reputation.

  • avatarUrl
    Type: string nullable
    required

    Their avatar URL. null when they haven't uploaded one.

  • country
    Type: string nullable
    required

    Their country as a two-letter ISO 3166-1 alpha-2 code (e.g. FR, US). null when unknown.

  • id
    Type: string
    required

    Stable opaque identifier for the other party. Do not parse.

  • rating
    Type: object · OrderPartyRating
    required

    A party's average review score and the number of reviews behind it.

    • average
      Type: number
      min:  
      1
      max:  
      5
      nullable
      required

      Average review score from 1 to 5. null when there are no reviews yet.

    • count
      Type: integer
      min:  
      0
      max:  
      9007199254740991
      required

      Number of reviews behind the average.

  • reliability
    Type: object · OrderPartyReliabilitynullable
    required

    A seller's recent order-handling stats. null for a buyer, or when there aren't enough recent orders to report.

    A seller's recent order-handling stats over a rolling window.

    • avgShipTimeHours
      Type: number
      min:  
      0
      nullable
      required

      Average hours between an order being placed and marked shipped. null when nothing shipped in the window.

    • completedCount
      Type: integer
      min:  
      0
      max:  
      9007199254740991
      required

      Of those, how many completed successfully.

    • completionRate
      Type: number
      min:  
      0
      max:  
      1
      nullable
      required

      Share of orders completed, from 0 to 1. null when there aren't enough orders to compute it.

    • orderCount
      Type: integer
      min:  
      0
      max:  
      9007199254740991
      required

      Orders received in the recent window that the rates are computed over.

  • type
    Type: string enumnullable
    required

    pro if they sell as a registered company, individual if they sell as a private person. null when they aren't a seller.

    values
    • pro

      You sell as a registered company.

    • individual

      You sell as a private person.

  • username
    Type: string
    required

    Their public handle.

Examples
{
  "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
  }
}