ExpansionSummary

  • code
    Type: string
    required

    Short expansion code (e.g. BLB for Bloomburrow, SV4 for Stellar Crown). Unique within a game.

  • gameId
    Type: string
    required

    The game this expansion belongs to (e.g. mtg, pokemon).

  • id
    Type: integer
    min:  
    -9007199254740991
    max:  
    9007199254740991
    required

    The expansion's identifier. Stable number — pass it back to address this expansion elsewhere.

  • languages
    Type: array string[]
    required

    Languages the expansion was printed in, as ISO 639 codes (e.g. en, fr, ja, zh-Hans).

  • name
    Type: string
    required

    The expansion's display name.

  • slug
    Type: string
    required

    URL-friendly identifier, unique within its game. Useful as a stable lookup key alongside id (e.g. bloomburrow).

  • cardCount
    Type: integer
    min:  
    0
    max:  
    9007199254740991

    Number of unique cards in this expansion.

  • logoUrl
    Type: string Format: uri

    URL of the expansion's logo image.

  • releaseDate
    Type: string · DateStringFormat: date-time

    When the expansion was released (ISO 8601, UTC).

  • sealedProductCount
    Type: integer
    min:  
    0
    max:  
    9007199254740991

    Number of sealed products (booster boxes, bundles, …) for this expansion.

  • symbolUrl
    Type: string Format: uri

    URL of the expansion's set symbol image.

Examples
{
  "id": 42,
  "gameId": "mtg",
  "slug": "bloomburrow",
  "name": "Bloomburrow",
  "code": "BLB",
  "releaseDate": "2024-08-02T00:00:00.000Z",
  "cardCount": 261,
  "sealedProductCount": 7,
  "languages": [
    "en",
    "fr",
    "de",
    "it",
    "es",
    "ja",
    "ko",
    "zh-Hans"
  ],
  "logoUrl": "https://images.cardnexus.com/expansions/mtg/blb/logo.svg",
  "symbolUrl": "https://images.cardnexus.com/expansions/mtg/blb/symbol.svg"
}