Get a game

Returns a single game by its identifier.

Authentication is required (any valid API key); no scope.

Path Parameters
  • gameId
    Type: string
    min length:  
    1
    required

    The game's identifier (e.g. mtg, pokemon). Returned by GET /v1/games.

Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/games/{gameId}
curl 'https://public-api.cardnexus.com/v1/games/{gameId}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "id": "mtg",
  "name": "Magic: The Gathering",
  "releaseDate": "1993-08-05T00:00:00.000Z",
  "cardCount": 28412,
  "sealedProductCount": 1834,
  "logoUrl": "https://images.cardnexus.com/games/mtg/logo.svg"
}