{
article: {
idArticle: // Article ID
idProduct: // Product ID
language: { // Language entity
idLanguage: // Language ID
languageName: // Language's name in English
}
comments: // Comments
price: // Price of the article
count: // Count (see notes)
inShoppingCart: // Flag, if that article is currently in a shopping cart
seller: { // Seller's user entity
idUser: // User ID
username: // Username
country: // Country
isCommercial: // Commercial seller
riskGroup: // Risk group
reputation: // Reputation
shipsFast: // Shipping speed
sellCount: // Sell count
onVacation: // Vacation flag
idDisplayLanguage: // Display language
}
lastEdited: // Date, the article was last updated
condition: // Product's condition, if applicable
isFoil: // Foil flag, if applicable
isSigned: // Signed flag, if applicable
isAltered: // Altered flag, if applicable
isPlayset: // Playset flaf, if applicable
isFirstEd: // First edition flag, if applicable
}
}
See also: Seller (User), Language entities
The count key represents has different semantics depending on the request the entity was the response to:
isFoil, isSigned, isAltered, isPlayset, isFirstEd)The lastEdited key is only returned for Stock Management requests.
The condition key is only returned for single cards.
The following additional properties are only returned for specific games:
isFoil for MtG, WoW, Spoils singlesisSigned for MtG, WoW, Spoils singlesisPlayset for MtG, WoW, Spoils singlesisAltered for MtG singlesisFirstEd for Yu-Gi-Oh! boosters and singles{
article: [
{
idArticle: 142158699
idProduct: 266361
language: {
idLanguage: 1
languageName: "English"
}
comments: ""
price: 0.02
count: 3
inShoppingCart: false
seller: {
idUser: 9999
username: "Maxi"
country: "D"
isCommercial: 1
riskGroup: 0
reputation: 1
shipsFast: 1
sellCount: 254
onVacation: false
idDisplayLanguage: 3
}
condition: "EX"
isFoil: false
isSigned: false
isAltered: false
isPlayset: false
}
{
idArticle: 139659146
idProduct: 266361
language: {
idLanguage: 2
languageName: "French"
}
comments: "Scan available"
price: 0.03
count: 1
inShoppingCart: true
seller: {
idUser: 9999
username: "Maxi"
country: "D"
isCommercial: 1
riskGroup: 0
reputation: 1
shipsFast: 1
sellCount: 254
onVacation: false
idDisplayLanguage: 3
}
condition: "NM"
isFoil: false
isSigned: false
isAltered: false
isPlayset: false
}
]
}