Skip to main content
A Product object represents something you sell in your store. Products contain metadata like name, description, and type, while pricing is managed through linked Offers. This separation allows a single product to have multiple pricing options for different regions or tiers. Products support various types including digital downloads, games, gift cards, software keys, subscriptions, and one-time payments. Each product can have variants (different versions) and, for subscriptions, billing plans.

Endpoints

The Product object

object
string
Object type identifier. Always "product" for Product objects.
id
string
required
Unique identifier (UUID) for this product.
type
string
required
Product type. Possible values: DigitalDownload, Game, GiftCard, SoftwareKey, VirtualCurrency, VirtualItem, Subscription, OneTimePayment
name
string
required
Display name of the product.
description
string
Product description. May contain HTML or markdown.
internalId
string | null
Your custom identifier for this product. Use to link to your own inventory system.
status
string
required
Product status. Possible values: DRAFT, ACTIVE, ARCHIVED
developer
string | null
Game developer name (primarily for Game type products).
publisher
string | null
Game publisher name (primarily for Game type products).
releaseDate
integer | null
Unix timestamp (milliseconds) of the game’s release date.
pegiRating
string | null
PEGI age rating. Possible values: 3, 7, 12, 16, 18, ! (pending)
systems
array | null
Supported platforms/systems. Possible values: Windows, MacOs, Linux, PlayStation 4, PlayStation 5, Xbox One, Xbox Series X|S, iOS, Android, Nintendo Switch, Nintendo 3DS
genres
array | null
Game genres. Common values: Action, Adventure, RPG, FPS, Strategy, Simulation, Sports, Racing, Puzzle, Horror, Indie, MMO, Open World, Multiplayer

Product hierarchy


Example response


Subscription product example


Offers

Pricing options for products

Discounts

Discounts applicable to products

Orders

Orders containing products

Subscriptions

Subscription products