Product Entity

{
    product: {
        idProduct:                          // Product ID
        idMetaproduct:                      // Metaproduct ID
        countReprints:                      // Number of similar products bundled by the metaproduct
        name: [                             // Name entity for each supported language
            {
                idLanguage:                 // Language ID
                languageName:               // Language's name in English
                productName:                // Product's name in given language
            }
        ]
        category: {                         // Category entity the product belongs to
            idCategory:                     // Category ID
            categoryName:                   // Category's name
        }
        priceGuide: {                       // Price guide entity '''(ATTN: not returned for expansion requests)'''
            SELL:                           // Average price of articles ever sold of this product
            LOW:                            // Current lowest non-foil price (all conditions)
            LOWEX+:                         // Current lowest non-foil price (condition EX and better)
            LOWFOIL:                        // Current lowest foil price
            AVG:                            // Current average non-foil price of all available articles of this product
        }
        website:                            // URL to the product (relative to MKM's base URL)
        image:                              // Path to the product's image
        expansion:                          // Expansion's name
        expIcon:                            // Index of the expansion icon
        number:                             // Number of product within the expansion (where applicable)
        rarity:                             // Rarity of product (where applicable)
        reprint: [                          // Reprint entities for each similar product bundled by the metaproduct
            {
                idProduct:                  // Product ID
                expansion:                  // Expansion's name
                expIcon:                    // Index of the expansion icon
            }
        ]
        countArticles:                      // Number of available articles of this product
        countFoils:                         // Number of available articles in foil of this products
    }
}

See also: Name Entity

Example Entity

{
    product: {
        idProduct: 18291
        idMetaproduct: 191
        countReprints: 5
        name: [
            {
                idLanguage: 1
                languageName: "English"
                productName: "Anger"
            }
            {
                idLanguage: 2
                languageName: "French"
                productName: "La Colère"
            }
        ]
        category: {
            idCategory: 1
            categoryName: "Magic Single"
        }
        priceGuide: {
            SELL: 0.37
            LOW: 0.9
            LOWFOIL: 0
            AVG: 0.99
        }
        website: "/Products/Singles/WCD+2003%3A+Peer+Kröger/Anger"
        image: "./img/cardImageNotAvailable.jpg"
        expansion: "World Championship Decks"
        expIcon: 87
        number: "999"
        rarity: "Special"
        reprint: [
            {
                idProduct: 253593
                expansion: "Duel Decks: Venser vs. Koth"
                expIcon: 242
            }
            {
                idProduct: 249304
                expansion: "WCD 2003: Peer Kröger"
                expIcon: 87
            }
        ]
        countArticles: 9
        countFoils: 0
    }
}