Amazon Product Advertising API – Search Index Enumeration

This is a quick update for those that use Amazon’s Product Advertising API with C# in the US. Here is an C# enumeration for valid values for SearchIndex.

/// <summary>
/// The possible SearchIndex values for Amazon
/// </summary>
public enum SearchIndex
{
All,
Apparel,
Appliances,
ArtsAndCrafts,
Automotive,
Baby,
Beauty,
Blended,
Books,
Classical,
Collectibles,
DigitalMusic,
Grocery,
DVD,
Electronics,
HealthPersonalCare,
HomeGarden,
Industrial,
Jewelry,
KindleStore,
Kitchen,
LawnGarden,
Magazines,
Marketplace,
Merchants,
Miscellaneous,
MobileApps,
MP3Downloads,
Music,
MusicalInstruments,
MusicTracks,
OfficeProducts,
OutdoorLiving,
PCHardware,
PetSupplies,
Photo,
Shoes,
Software,
SportingGoods,
Tools,
Toys,
UnboxVideo,
VHS,
Video,
VideoGames,
Watches,
Wireless,
WirelessAccessories,
}

Leave a Reply