eBay Shopping APIVersion 1293
 

GetSingleItem

Note: All calls in the Shopping API have been deprecated and will be decommissioned on February 5, 2025. An alternative to this API is the Browse API, which also has advanced search capabilities.

Note: Developers using Shopping API calls must authenticate with an OAuth application access token in the HTTP header X-EBAY-API-IAF-TOKEN and use OAuth application access tokens with a scope that includes https://api.ebay.com/oauth/api_scope. See the client credentials grant flow topic for more information on generating and managing OAuth application access tokens. See the Specifying OAuth scopes topic for more information on OAuth scopes.

This call retrieves publicly visible details about one listing on eBay. This gives you most of the data that eBay shows to the general public on the View Item page (title, description, basic price information, and other details).

See the Input and Output sections below for a complete list of fields in this call.

Usage Details

You just need to know the eBay item ID (a value like 123456789012) in order to retrieve the listing. Typically, you use the Finding API to find listings by keyword or by seller, then use the ItemID value from one of those items as input to GetSingleItem. If a listing ended more than 90 days ago, its title, price, and other item information are not returned.

Note: What if you need to see item data that is normally only visible to the seller (where eBay would require them to login)? For this, you would need to use the authenticated version of this call (GetItem) in eBay Trading API instead.

Best Practices

GetSingleItem has been optimized for response size, speed and usability. So, it returns the most commonly used fields by default. Use the IncludeSelector field to get more data—but please note that getting more data can result in longer response times.

See Sample: Basic Call for a sample that returns the default fields. See Sample: Getting the Full Description and Item Specifics for a sample that returns more data.

Refreshing Item Data

If you're monitoring the same item over time, most of the data (such as the seller and the full text of the description) doesn't change at all, or changes rarely. A few pieces of information (like the bid count) change more often.

So, after you initially retrieve an item's details, cache the item data locally, and then use GetItemStatus from then on to more quickly update the details that tend to change. Depending on your use case, you can call GetSingleItem again occasionally to see if the seller has revised any other data in the listing.

Getting Shipping Details

If you're showing an item to a potential buyer and you know where that buyer is located, it may be helpful to check where the seller is willing to ship the item (ShipToLocations). Some sellers will ship worldwide, others prefer to ship to certain countries or regions only, and still others do not ship at all but require local pickup.

If you want to see an item's shipping cost summary, you can call GetShippingCosts with that item ID.

Getting an Item from a Different eBay Site

Item IDs are unique across all eBay sites, so you normally don't need to specify a different site ID with your GetSingleItem request to get an item that was listed on another eBay site. (This is a little different from the way searches with the Finding API works.)

In fact, if you send your request to the US site and the item was listed on the eBay UK site, we'll give you the original price in Pounds (GBP), and we'll calculate the converted price in US dollars (USD) for you (based on the current exchange rate).

See Sample: Getting a Foreign Listing with Converted Prices for a sample that shows how this works.

By the way, we always return converted prices, even when no conversion takes place. So, if you're comparing the current price of different items and you don't care which site they're listed on, it is simplest to compare the ConvertedCurrentPrice values of each item.

Note: For listings that return Item.DiscountPriceInfo.PricingTreatment set to MAP (Minimum Advertised Price), you are legally required to follow the rules for displaying the price of the item to potential buyers. You are bound by the terms of the API License Agreement to follow these rules. Refer to the API License Agreement for consequences of non-compliance.

Related Information

See also the reference documentation for these calls:



Input

See also Samples.

The box below lists all fields that could be included in the call request. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).

See also the Deprecated Objects link above. Fields presented in this color are deprecated, and fields presented in this color are (or soon will be) non-operational.

<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <!-- Call-specific Input Fields -->
  <IncludeSelector> string </IncludeSelector>
  <ItemID> string </ItemID>
  <VariationSKU> string </VariationSKU>
  <VariationSpecifics> NameValueListArrayType
    <NameValueList> NameValueListType
      <Name> string </Name>
      <Value> string </Value>
      <!-- ... more Value values allowed here ... -->
    </NameValueList>
    <!-- ... more NameValueList nodes allowed here ... -->
  </VariationSpecifics>
  <!-- Standard Input Fields -->
  <MessageID> string </MessageID>
</GetSingleItemRequest>
Argument Type Occurrence Meaning
Call-specific Input Fields [Jump to standard fields]
IncludeSelector string Optional Defines standard subsets of fields to return within the response.

If you don't specify this field, the call returns a default set of fields (see the "Detail Controls" link below). If you specify this field, the additional fields you retrieve can affect the call's response time (performance).

Applicable values:

•   Details

Include most available fields in the response (except fields that significantly affect the call's performance).

•   Description

Include the Description field in the response. (This can affect the call's performance.)

•   TextDescription

Include the text Description (no html tag) field in the response. (This can affect the call's performance.)

•   ShippingCosts

Include basic shipping costs in the response. (Use GetShippingCosts to retrieve more details.)

•   ItemSpecifics

Include ItemSpecifics in the response.

•   Variations

Include Variations in the response.

•   Compatibility

Include Compatibility in the response.


Use a comma to specify multiple values. (In this case, the results are cumulative.) See "GetSingleItem Samples" for an example of how to use this field.

See "Detail Controls" for a complete list of fields that can be returned for each selector.

See:
    Detail Controls
    GetSingleItem Samples

ItemID string Required The item ID that uniquely identifies the item listing for which to retrieve the data.

You can determine an item's ID by calling findItemsAdvanced( Finding API) or from the eBay Web site.
Max length: 19 (Note: The eBay database specifies 38. Currently, Item IDs are usually 9 to 12 digits).

See (findItemsAdvanced) item.itemId.

VariationSKU string Optional Variation-level SKU that uniquely identifies a variation within the listing identified by ItemID. Only applicable when the seller included variation-level SKU (Variation.SKU) values. Retrieves all the usual listing fields, but limits the variations content to the specified variation. If not specified, the response includes all variations.
VariationSpecifics NameValueListArrayType Optional Name-value pairs that identify one or more variations within the listing identified by ItemID. Only applicable when the seller listed the item with variations. Retrieves all the usual Item fields, but limits the Variations content to the specified variation(s). If the specified pairs do not match any variation, eBay returns all variations.

To retrieve only one variation, specify the full set of name/value pairs that match all the name-value pairs of one variation.

To retrieve multiple variations (using a wildcard), specify one or more name/value pairs that partially match the desired variations. For example, if the listing contains variations for shirts in different colors and sizes, specify Color as Red (and no other name/value pairs) to retrieve all the red shirts in all sizes (but no other colors).
VariationSpecifics
  .NameValueList
NameValueListType Optional,
repeatable: [0..*]
This list is an array of Item Specifics name-value pairs for an eBay Catalog product (if FindProducts is used) or Item Specifics name-value pairs for a single-variation listing or individual variation within a multiple-variation listing (if GetSingleItem or GetMultipleItems is used).

For example, Item Specifics for a motor vehicle might include a field like Make=Toyota (where Make is returned in Name field, and Toyota is returned in Value field) and Model=Prius (where Model is returned in Name field, and Prius is returned in Value field).

In multiple-variation listings, the same name cannot appear in both the ItemSpecifics node and Variation.VariationSpecifics nodes. Common aspects for all variations within the multiple-variation listings will appear in the ItemSpecifics node, and aspects unique to individual variations within the multiple-variation listings will appear in the Variation.VariationSpecifics nodes.

For GetSingleItem, the user can use the NameValueList container in the call input to identify one or more variations to retrieve from a specific multiple-variation listing.
VariationSpecifics
  .NameValueList.Name
string Conditional The name of the Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, and individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

Note: To control the data that is returned in a GetSingleItem or GetMultipleItems response, the IncludeSelector filter should be included. To see listing-level Item Specifics, include the IncludeSelector field and set its value to ItemSpecifics. To see variation-level Item Specifics (only applicable for multiple-variation listings), include the IncludeSelector field and set its value to Variations. To see Parts Compatibility name/value pairs (only applicable for motor vehicle part or accessory listings with a compatible vehicle list), include the IncludeSelector field and set its value to Compatibility.
VariationSpecifics
  .NameValueList.Value
string Conditional,
repeatable: [0..*]
The corresponding value of an Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, an individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.
Standard Input Fields  
MessageID string Optional If you pass a value into the MessageID field in a request, the same value is returned in CorrelationID field in the response. If you're making a lot of calls, you can use this for tracking that a response is returned for every request and to match particular responses to particular requests. (In this case, specify a different value for each request.) You can specify any value that is useful to you.



Output

See also Samples.

The box below lists all fields that might be returned in the response. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).

See also the Deprecated Objects link above. Fields presented in this color are deprecated, and fields presented in this color are not returned (or soon will not be returned) or are not operational (or soon will be non-operational).

<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <!-- Call-specific Output Fields -->
  <Item> SimpleItemType
    <AutoPay> boolean </AutoPay>
    <AvailableForPickupDropOff> boolean </AvailableForPickupDropOff>
    <BestOfferEnabled> boolean </BestOfferEnabled>
    <BidCount> int </BidCount>
    <BusinessSellerDetails> BusinessSellerDetailsType
      <AdditionalContactInformation> string </AdditionalContactInformation>
      <Address> AddressType
        <CityName> string </CityName>
        <CompanyName> string </CompanyName>
        <CountryName> string </CountryName>
        <FirstName> string </FirstName>
        <LastName> string </LastName>
        <Name> string </Name>
        <Phone> string </Phone>
        <PostalCode> string </PostalCode>
        <StateOrProvince> string </StateOrProvince>
        <Street1> string </Street1>
        <Street2> string </Street2>
      </Address>
      <Email> string </Email>
      <Fax> string </Fax>
      <LegalInvoice> boolean </LegalInvoice>
      <TermsAndConditions> string </TermsAndConditions>
      <TradeRegistrationNumber> string </TradeRegistrationNumber>
      <VATDetails> VATDetailsType
        <BusinessSeller> boolean </BusinessSeller>
        <RestrictedToBusiness> boolean </RestrictedToBusiness>
        <VATID> string </VATID>
        <VATPercent> float </VATPercent>
        <VATSite> string </VATSite>
      </VATDetails>
    </BusinessSellerDetails>
    <BuyItNowAvailable> boolean </BuyItNowAvailable>
    <BuyItNowPrice currencyID="CurrencyCodeType"> AmountType (double) </BuyItNowPrice>
    <Charity> CharityType
      <CharityID> string </CharityID>
      <CharityName> string </CharityName>
      <DonationPercent> float </DonationPercent>
      <LogoURL> string </LogoURL>
      <Mission> string </Mission>
      <Status> CharityStatusCodeType </Status>
    </Charity>
    <ConditionDescription> string </ConditionDescription>
    <ConditionDisplayName> string </ConditionDisplayName>
    <ConditionID> int </ConditionID>
    <ConvertedBuyItNowPrice currencyID="CurrencyCodeType"> AmountType (double) </ConvertedBuyItNowPrice>
    <ConvertedCurrentPrice currencyID="CurrencyCodeType"> AmountType (double) </ConvertedCurrentPrice>
    <Country> CountryCodeType </Country>
    <CurrentPrice currencyID="CurrencyCodeType"> AmountType (double) </CurrentPrice>
    <Description> string </Description>
    <DiscountPriceInfo> DiscountPriceInfoType
      <MinimumAdvertisedPrice currencyID="CurrencyCodeType"> AmountType (double) </MinimumAdvertisedPrice>
      <MinimumAdvertisedPriceExposure> MinimumAdvertisedPriceExposureCodeType </MinimumAdvertisedPriceExposure>
      <OriginalRetailPrice currencyID="CurrencyCodeType"> AmountType (double) </OriginalRetailPrice>
      <PricingTreatment> PricingTreatmentCodeType </PricingTreatment>
      <SoldOffeBay> boolean </SoldOffeBay>
      <SoldOneBay> boolean </SoldOneBay>
    </DiscountPriceInfo>
    <EligibleForPickupDropOff> boolean </EligibleForPickupDropOff>
    <EndTime> dateTime </EndTime>
    <ExcludeShipToLocation> string </ExcludeShipToLocation>
    <!-- ... more ExcludeShipToLocation values allowed here ... -->
    <GalleryURL> anyURI </GalleryURL>
    <GlobalShipping> boolean </GlobalShipping>
    <HandlingTime> int </HandlingTime>
    <HighBidder> SimpleUserType
      <FeedbackPrivate> boolean </FeedbackPrivate>
      <FeedbackRatingStar> FeedbackRatingStarCodeType </FeedbackRatingStar>
      <FeedbackScore> int </FeedbackScore>
      <UserAnonymized> boolean </UserAnonymized>
      <UserID> string </UserID>
    </HighBidder>
    <HitCount> long </HitCount>
    <IgnoreQuantity> boolean </IgnoreQuantity>
    <IntegratedMerchantCreditCardEnabled> boolean </IntegratedMerchantCreditCardEnabled>
    <ItemCompatibilityCount> int </ItemCompatibilityCount>
    <ItemCompatibilityList> ItemCompatibilityListType
      <Compatibility> ItemCompatibilityType
        <CompatibilityNotes> string </CompatibilityNotes>
        <NameValueList> NameValueListType
          <Name> string </Name>
          <Value> string </Value>
          <!-- ... more Value values allowed here ... -->
        </NameValueList>
        <!-- ... more NameValueList nodes allowed here ... -->
      </Compatibility>
      <!-- ... more Compatibility nodes allowed here ... -->
    </ItemCompatibilityList>
    <ItemID> string </ItemID>
    <ItemSpecifics> NameValueListArrayType
      <NameValueList> NameValueListType
        <Name> string </Name>
        <Value> string </Value>
        <!-- ... more Value values allowed here ... -->
      </NameValueList>
      <!-- ... more NameValueList nodes allowed here ... -->
    </ItemSpecifics>
    <ListingStatus> ListingStatusCodeType </ListingStatus>
    <ListingType> ListingTypeCodeType </ListingType>
    <Location> string </Location>
    <LotSize> int </LotSize>
    <MinimumToBid currencyID="CurrencyCodeType"> AmountType (double) </MinimumToBid>
    <PaymentAllowedSite> SiteCodeType </PaymentAllowedSite>
    <!-- ... more PaymentAllowedSite values allowed here ... -->
    <PaymentMethods> BuyerPaymentMethodCodeType </PaymentMethods>
    <!-- ... more PaymentMethods values allowed here ... -->
    <PictureURL> anyURI </PictureURL>
    <!-- ... more PictureURL values allowed here ... -->
    <PostalCode> string </PostalCode>
    <PrimaryCategoryID> string </PrimaryCategoryID>
    <PrimaryCategoryIDPath> string </PrimaryCategoryIDPath>
    <PrimaryCategoryName> string </PrimaryCategoryName>
    <ProductID> ProductIDType (string) </ProductID>
    <Quantity> int </Quantity>
    <QuantityAvailableHint> QuantityAvailableHintCodeType </QuantityAvailableHint>
    <QuantityInfo> QuantityInfo
      <MinimumRemnantSet> int </MinimumRemnantSet>
    </QuantityInfo>
    <QuantitySold> int </QuantitySold>
    <QuantitySoldByPickupInStore> int </QuantitySoldByPickupInStore>
    <QuantityThreshold> int </QuantityThreshold>
    <ReserveMet> boolean </ReserveMet>
    <ReturnPolicy> ReturnPolicyType
      <Description> string </Description>
      <InternationalRefund> string </InternationalRefund>
      <InternationalReturnsAccepted> string </InternationalReturnsAccepted>
      <InternationalReturnsWithin> string </InternationalReturnsWithin>
      <InternationalShippingCostPaidBy> string </InternationalShippingCostPaidBy>
      <Refund> string </Refund>
      <ReturnsAccepted> string </ReturnsAccepted>
      <ReturnsWithin> string </ReturnsWithin>
      <ShippingCostPaidBy> string </ShippingCostPaidBy>
    </ReturnPolicy>
    <SecondaryCategoryID> string </SecondaryCategoryID>
    <SecondaryCategoryIDPath> string </SecondaryCategoryIDPath>
    <SecondaryCategoryName> string </SecondaryCategoryName>
    <Seller> SimpleUserType
      <FeedbackRatingStar> FeedbackRatingStarCodeType </FeedbackRatingStar>
      <FeedbackScore> int </FeedbackScore>
      <PositiveFeedbackPercent> float </PositiveFeedbackPercent>
      <TopRatedSeller> boolean </TopRatedSeller>
      <UserID> string </UserID>
    </Seller>
    <ShippingCostSummary> ShippingCostSummaryType
      <ListedShippingServiceCost currencyID="CurrencyCodeType"> AmountType (double) </ListedShippingServiceCost>
      <LocalPickup> boolean </LocalPickup>
      <ShippingServiceCost currencyID="CurrencyCodeType"> AmountType (double) </ShippingServiceCost>
      <ShippingType> ShippingTypeCodeType </ShippingType>
    </ShippingCostSummary>
    <ShipToLocations> string </ShipToLocations>
    <!-- ... more ShipToLocations values allowed here ... -->
    <Site> SiteCodeType </Site>
    <SKU> string </SKU>
    <StartTime> dateTime </StartTime>
    <Storefront> StorefrontType
      <StoreName> string </StoreName>
      <StoreURL> anyURI </StoreURL>
    </Storefront>
    <Subtitle> string </Subtitle>
    <TimeLeft> duration </TimeLeft>
    <Title> string </Title>
    <TopRatedListing> boolean </TopRatedListing>
    <UnitInfo> UnitInfoType
      <UnitQuantity> double </UnitQuantity>
      <UnitType> string </UnitType>
    </UnitInfo>
    <Variations> VariationsType
      <Pictures> PicturesType
        <VariationSpecificName> string </VariationSpecificName>
        <VariationSpecificPictureSet> VariationSpecificPictureSetType
          <PictureURL> anyURI </PictureURL>
          <!-- ... more PictureURL values allowed here ... -->
          <VariationSpecificValue> string </VariationSpecificValue>
        </VariationSpecificPictureSet>
        <!-- ... more VariationSpecificPictureSet nodes allowed here ... -->
      </Pictures>
      <Variation> VariationType
        <DiscountPriceInfo> DiscountPriceInfoType
          <MinimumAdvertisedPrice currencyID="CurrencyCodeType"> AmountType (double) </MinimumAdvertisedPrice>
          <MinimumAdvertisedPriceExposure> MinimumAdvertisedPriceExposureCodeType </MinimumAdvertisedPriceExposure>
          <OriginalRetailPrice currencyID="CurrencyCodeType"> AmountType (double) </OriginalRetailPrice>
          <PricingTreatment> PricingTreatmentCodeType </PricingTreatment>
          <SoldOffeBay> boolean </SoldOffeBay>
          <SoldOneBay> boolean </SoldOneBay>
        </DiscountPriceInfo>
        <ProductID> ProductIDType (string) </ProductID>
        <Quantity> int </Quantity>
        <SellingStatus> SellingStatusType
          <QuantitySold> int </QuantitySold>
          <QuantitySoldByPickupInStore> int </QuantitySoldByPickupInStore>
        </SellingStatus>
        <SKU> string </SKU>
        <StartPrice currencyID="CurrencyCodeType"> AmountType (double) </StartPrice>
        <VariationSpecifics> NameValueListArrayType
          <NameValueList> NameValueListType
            <Name> string </Name>
            <Value> string </Value>
            <!-- ... more Value values allowed here ... -->
          </NameValueList>
          <!-- ... more NameValueList nodes allowed here ... -->
        </VariationSpecifics>
        <!-- ... more VariationSpecifics nodes allowed here ... -->
      </Variation>
      <!-- ... more Variation nodes allowed here ... -->
      <VariationSpecificsSet> NameValueListArrayType
        <NameValueList> NameValueListType
          <Name> string </Name>
          <Value> string </Value>
          <!-- ... more Value values allowed here ... -->
        </NameValueList>
        <!-- ... more NameValueList nodes allowed here ... -->
      </VariationSpecificsSet>
    </Variations>
    <VhrAvailable> boolean </VhrAvailable>
    <VhrUrl> anyURI </VhrUrl>
    <ViewItemURLForNaturalSearch> anyURI </ViewItemURLForNaturalSearch>
  </Item>
  <!-- Standard Output Fields -->
  <Ack> AckCodeType </Ack>
  <Build> string </Build>
  <CorrelationID> string </CorrelationID>
  <Errors> ErrorType
    <ErrorClassification> ErrorClassificationCodeType </ErrorClassification>
    <ErrorCode> token </ErrorCode>
    <ErrorParameters ParamID="string"> ErrorParameterType
      <Value> string </Value>
    </ErrorParameters>
    <!-- ... more ErrorParameters nodes allowed here ... -->
    <LongMessage> string </LongMessage>
    <SeverityCode> SeverityCodeType </SeverityCode>
    <ShortMessage> string </ShortMessage>
  </Errors>
  <!-- ... more Errors nodes allowed here ... -->
  <Timestamp> dateTime </Timestamp>
  <Version> string </Version>
</GetSingleItemResponse>
Return Value Type Occurrence Meaning
Call-specific Output Fields [Jump to standard fields]
Item SimpleItemType Always Contains details about the listing whose ID was specified in the request.

IncludeSelector: none (not controlled by IncludeSelector)
Item.AutoPay boolean Always This field indicates if the seller requests immediate payment for the item. If true, immediate payment is required before the checkout process can begin. If false, immediate payment is not requested.

The immediate payment feature is only applicable to fixed-price listings, or for auction listings where the buyer chooses to purchase the item through the 'Buy It Now' option. The immediate payment feature is not applicable (even if the AutoPay field has a true value) in the following types of listings/transactions:
  • Classified ad listings where payment/checkout happens between buyer and seller off of eBay's platform
  • Auction listings that end with a winning bidder
  • A buyer's Best Offer (on Fixed-Price or Auction items) that is accepted by the seller


IncludeSelector: none (not controlled by IncludeSelector)
Item.AvailableForPickupDropOff boolean Conditionally If this field is returned as true, the order line item is enabled with the 'Click and Collect' feature. With Click and Collect, buyers are able to purchase an order line item on the eBay UK, Australia, and Germany sites, and then pick up their order from the nearest 'eBay Collection Point', including over 750 Argos stores in the UK.

The Click and Collect feature is only available on the eBay UK, Australia, and Germany sites. For more information about Click and Collect, see the Click and Collect home page on the eBay UK site, the Click and Collect home page on the eBay Australia site, or the Click and Collect home page on the eBay Germany site.

Not all categories on the UK, Australia, and Germany sites support Click and Collect listings. To verify if a specific category on these eBay sites support Click and Collect listings, use the GetCategoryFeatures call, passing in one or more CategoryID values and a PickupDropOffEnabled value in the FeatureID field.

Look for a true value in the PickupDropOffEnabled field of the corresponding Category node (match up the CategoryID values if more than one Category IDs were passed in the request).

IncludeSelector: Details
Item.BestOfferEnabled boolean Conditionally This boolean field indicates whether the seller will accept a Best Offer for the item. The Best Offer feature allows a buyer to propose a price that is lower than the fixed price or lower than the current bid price on an auction listing. A buyer should consider their Best Offer as a binding offer, and if the seller accepts the offer, that buyer is expected to purchase the item (and is actually charged immediately if the listing is set up for immediate payment.

Note: The Best Offer feature is now available for auction listings on the following sites: US, Canada, UK, Germany, Australia, France, Italy, and Spain. However, sellers must choose between offering Best Offer or Buy It Now on an auction listing, as both features cannot be enabled on the same auction listing. If an auction listing is enabled with Best Offer, this feature will no longer be applicable once the listing receives its first qualifying bid.

IncludeSelector: Details

See:
    (eBay Help) Making a Best Offer (for Buyers)
    (eBay DE Hilfe) Preis vorschlagen

Item.BidCount int Always This integer value indicates the number of bids that have been placed on an auction item. This field is only applicable to auction listings, but it is always returned for all listings, and its value will be '0' if bids are not applicable to the listing.

IncludeSelector: none (not controlled by IncludeSelector)
Item.BusinessSellerDetails BusinessSellerDetailsType Conditionally This container is returned if the seller of the item is registered on the eBay listing site as a Business Seller. This container consists of information related to the Business Seller's account. Not all eBay sites support Business Sellers.

IncludeSelector: Details
Item.BusinessSellerDetails
  .AdditionalContactInformation
string Conditionally This field shows any additional contact for the Business Seller in free-form text. This field is only returned if known and available.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address
AddressType Conditionally This field shows the address on file for the Business Seller.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.CityName
string Conditionally The name of the Business Seller's city.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.CompanyName
string Conditionally The Business Seller's company name. This field is only returned if defined and available.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.CountryName
string Conditionally The name of the country associated with the Business Seller's address.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.FirstName
string Conditionally The first name of the Business Seller.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.LastName
string Conditionally The last name of the Business Seller.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.Name
string Conditionally The name associated with the Business Seller. This field is only returned if defined and available.

Max length: 128.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.Phone
string Conditionally The Business Seller's primary phone number. This may return a value of Invalid Request if you are not authorized to see the Business Seller's phone number.

In the US, the area code (3 digits), the prefix (3 digits), the line number (4 digits), and phone extension (if specified by the user) are returned in this field. The extension can be one or more digits. Non-breaking spaces are used as delimiters between these phone number components.


IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.PostalCode
string Conditionally The postal code asssociated with the Business Seller's address.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.StateOrProvince
string Conditionally The state or province of the Business Seller's address. States and/or provinces are not applicable for every country.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.Street1
string Conditionally The first line of the Business Seller's street address.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Address.Street2
string Conditionally The second line of the Business Seller's street address (such as an apartment number or suite number). Returned if the Business Seller used the second line available for a street address.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

IncludeSelector: Details
Item.BusinessSellerDetails
  .Email
string Conditionally This field shows the email address on file for the Business Seller.

IncludeSelector: Details
Item.BusinessSellerDetails.Fax string Conditionally This field shows the Fax number on file for the Business Seller. This field is only returned if known and available.

IncludeSelector: Details
Item.BusinessSellerDetails
  .LegalInvoice
boolean Conditionally This boolean field is returned as true if the Business Seller provides legal invoices to buyers.

IncludeSelector: Details
Item.BusinessSellerDetails
  .TermsAndConditions
string Conditionally This free-form text field provides the Business Seller's terms and conditions for doing business. This field is returned if available.

IncludeSelector: Details
Item.BusinessSellerDetails
  .TradeRegistrationNumber
string Conditionally This field shows the Trade Registration Number for the Business Seller.

IncludeSelector: Details
Item.BusinessSellerDetails
  .VATDetails
VATDetailsType Conditionally This container provides Value-Added Tax (VAT) details for the Business Seller, including the seller's VAT ID and the VAT percentage rate applicable to the item. VAT is similar to a sales and/or consumption tax, and it is only applicable to sellers selling on European sites.

IncludeSelector: Details
Item.BusinessSellerDetails
  .VATDetails.BusinessSeller
boolean Conditionally This field is only returned if set on the listing, and the person making the call owns the listing.

IncludeSelector: Details
Item.BusinessSellerDetails
  .VATDetails
  .RestrictedToBusiness
boolean Conditionally This field is only returned if 'true', and the person making the call owns the listing. The 'Restricted to Business' feature can only be used by registered business sellers on the German, Austrian, and Swiss marketplaces, and only in listing categories that support 'Business-to-Business' listings. In a 'Business-to-Business' listing, the seller restricts sales of their item to users registered on eBay as business users.

The GetCategories Trading API call can be used by the seller (using the eBay marketplace's Site ID value) to see which categories support Business-to-Business listings. A B2BVATEnabled boolean field will be returned as true if a listing category supports Business-to-Business listings.

IncludeSelector: Details
Item.BusinessSellerDetails
  .VATDetails.VATID
string Conditionally This is the unique VAT identifier associated with the Business Seller's account. This field will only be returned to Business Sellers who own the specified listing.

Non-Business Sellers will not have a VAT identifier associated with their account, so this field will never be returned for those users.

IncludeSelector: Details
Item.BusinessSellerDetails
  .VATDetails.VATPercent
float Conditionally This container shows the VAT (Value-added Tax) percentage rate that will be charged to buyers when an item is purchased from the listing.

VAT is not applicable to all countries, including the US. Allowed VAT percentage rates can vary by region/country, so sellers should be aware of the rates they are legally required/allowed to charge, and they are responsible for charging the correct VAT rate.

If VAT is charged on a listing, the seller can choose to print an invoice for the buyer that shows the item's net price, the VAT percentage rate, the VAT amount, and the total price.

This field is returned only if the listing is subject to VAT.

Note: The float value input into an Add/Revise/Relist call can have up to three digits beyond the decimal point (e.g. 12.346).

IncludeSelector: Details
Item.BusinessSellerDetails
  .VATDetails.VATSite
string Conditionally This string value is the Site ID value of the eBay Marketplace where the VAT is applicable and where the seller is registered as a Business Seller.

The eBay sites that support VAT (and their corresponding Site IDs) can be found in the Business Feature Field Differences topic.

IncludeSelector: Details
Item.BuyItNowAvailable boolean Conditionally This field is only returned if the Buy It Now feature is enabled and available on an active auction listing. This field is only returned if true. With the Buy It Now feature, interested buyers have the option of bypassing the auction procedure, and purchasing the item immediately at the price shown in the BuyItNowPrice field (or in the ConvertedBuyItNowPrice field for international buyers.

Once a qualifying bid is made on an auction listing, the Buy It Now feature ceases being an option to interested buyers, and the BuyItNowAvailable field will no longer be returned for the active auction listing.

IncludeSelector: none (not controlled by IncludeSelector)
Item.BuyItNowPrice AmountType (double) Conditionally This field is only returned if a seller enabled an auction listing with the Buy It Now feature. Sellers have the option of enabling the Buy It Now feature on auction listings. The price in this field is the price that an interested buyer has to pay if that buyer wishes to bypass the auction procedure, and purchase the item immediately. The price in the field reflects the currency used in the eBay site's country. If an interested international buyer wants to view the Buy It Now price in their country's currency, that buyer should view the ConvertedBuyItNowPrice field instead.

Once a qualifying bid is made on an auction listing, the Buy It Now feature ceases being an option to interested buyers. Note that it is possible that the BuyItNowPrice field may still get returned even after the Buy It Now feature is disabled, but the BuyItNowAvailable field should stop getting returned, since that field is only returned when true.

To see the fixed price for a fixed-price or classified ad listing, or the starting/current bid price for an auction listing, see the CurrentPrice or ConvertedCurrentPrice fields instead.

IncludeSelector: Details

See:
    Item.BuyItNowAvailable
    Item.ConvertedBuyItNowPrice
    Item.CurrentPrice
    Item.ConvertedCurrentPrice
    (eBay Help) Buy It Now in auction listings

Item.BuyItNowPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field is only returned if a seller enabled an auction listing with the Buy It Now feature. Sellers have the option of enabling the Buy It Now feature on auction listings. The price in this field is the price that an interested buyer has to pay if that buyer wishes to bypass the auction procedure, and purchase the item immediately. The price in the field reflects the currency used in the eBay site's country. If an interested international buyer wants to view the Buy It Now price in their country's currency, that buyer should view the ConvertedBuyItNowPrice field instead.

Once a qualifying bid is made on an auction listing, the Buy It Now feature ceases being an option to interested buyers. Note that it is possible that the BuyItNowPrice field may still get returned even after the Buy It Now feature is disabled, but the BuyItNowAvailable field should stop getting returned, since that field is only returned when true.

To see the fixed price for a fixed-price or classified ad listing, or the starting/current bid price for an auction listing, see the CurrentPrice or ConvertedCurrentPrice fields instead.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Charity CharityType Conditionally This container is returned if any percentage of the sales proceeds is going to a nonprofit organization that is registered with eBay for Charity. This container consists of details related to the nonprofit charity organization, including the name, mission, and unique identifier of the charity, as well as the percentage rate of the sale proceeds that will go to the charity for each sale.

This container is not returned for non-charitable listings.

IncludeSelector: Details
Item.Charity.CharityID string Conditionally The unique identifier that eBay creates and assigns to each charitable organization that is registered with eBay for Charity. This is the unique identifier that should be used if the user wishes to retrieve more details on a charitable organization by using the getCharityOrg method of the Charity API or the GetCharities call of the Trading API.

This identifier is also used by a seller in an Add/Revise/Relist call when they want to identify the charitable organization that will receive sales proceeds for a listing.

IncludeSelector: Details
Item.Charity.CharityName string Conditionally The name of the charitable organization selected by the seller to receive sales proceeds for the listing.

IncludeSelector: Details
Item.Charity.DonationPercent float Conditionally The percentage of the purchase price that the seller chooses to donate to the selected charitable organization. This percentage is also displayed in the View Item page for the listing. Possible values range from 10.0 to 100.0 (percent), in 5 percent increments. A seller is required to set a donation percentage at listing time, so this field should always be returned for charity listings.

IncludeSelector: Details

See:
    eBay for Charity home page
    Buying on eBay to benefit nonprofit organizations

Item.Charity.LogoURL string Conditionally The full URL to the nonprofit organization's logo image file. This logo image file is the image that is displayed in all eBay listings that benefit that charity. This field is returned as long as it is defined for the nonprofit organization.

IncludeSelector: Details
Item.Charity.Mission string Conditionally The stated mission of the nonprofit organization. The length of the mission statement can vary by organization. This field is returned as long as it is defined for the nonprofit organization.
Max length: 511.

IncludeSelector: Details
Item.Charity.Status CharityStatusCodeType Conditionally This enumeration value indicates whether or not the nonprofit organization is a valid eBay for Charity organization, and is able to receive proceeds from eBay sales.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
NoLongerValid
(out) The specified nonprofit charity organization is no longer a valid nonprofit charity organization according to the requirements of the PayPal Giving Fund.
Valid
(out) The specified nonprofit charity organization is a valid nonprofit charity organization according to the requirements of the PayPal Giving Fund.

Code so that your app gracefully handles any future changes to this list.

IncludeSelector: Details
Item.ConditionDescription string Conditionally This string field is used by the seller to more clearly describe the condition of items that are not brand new.

The ConditionDescription field is available for all categories, including categories where the condition type is not applicable (e.g., Antiques). This field is applicable for all item conditions except "New", "Brand New", "New with tags", and "New in box". If ConditionDescription is used with these conditions (Condition IDs 1000-1499), eBay will simply ignore this field if included, and eBay will return a warning message to the user.

This field should only be used to further clarify the condition of the used item. For example, "The right leg of the chair has a small scratch, and on the seat back there is a light blue stain about the shape and size of a coin." It should not be used for branding, promotions, shipping, returns, payment or other information unrelated to the condition of the item. Make sure that the condition type (Item.ConditionID), condition description, item description (Item.Description), and the listing's pictures do not contradict one another.

The ConditionDescription field is only returned if a condition description is specified in the listing.
Max length: 1000.

IncludeSelector: none (not controlled by IncludeSelector)
Item.ConditionDisplayName string Conditionally The user-friendly display name for the item condition, such as New, Like New Used, or Good. Display names are localized for the site on which they're listed (not necessarily the site on which they're viewed).

ConditionDisplayName values all map to ConditionID values, but keep in mind that based on the eBay category, some item conditions can have the same ConditionID, but a slightly different ConditionDisplayName. For example, a ConditionID value of 1000 typically indicates an item in new condtion, but the text displayed in the ConditionDisplayName can be just New, or some categories will show Brand New, New with tags, or New with box.

This field will get returned for most listings since most eBay listing categories require an item condition, but this field may not get returned for listings in eBay categories that don't require an item condition. A ConditionDisplayName value always maps to a text-based description of the condition, and this Condition ID is shown in the ConditionID field.

IncludeSelector: none (not controlled by IncludeSelector)
Item.ConditionID int Conditionally A numeric identifier that represents the condition of an item. These numeric IDs can vary by eBay category, but many are the same across categories. For example, 1000 indicates an item in New condition, 3000 indicates an item in Used condition, and 5000 indicates an item in Good condition.

This field will get returned for most listings since most eBay listing categories require an item condition, but this field may not get returned for listings in eBay categories that don't require an item condition. A ConditionID value always maps to a text-based description of the condition, and this display text is shown in the ConditionDisplayName field.

IncludeSelector: none (not controlled by IncludeSelector)
Item.ConvertedBuyItNowPrice AmountType (double) Conditionally This field is only returned if a seller enabled an auction listing with the Buy It Now feature. Sellers have the option of enabling the Buy It Now feature on auction listings. The price in this field is the price that an interested buyer has to pay if that buyer wishes to bypass the auction procedure, and purchase the item immediately. The price in the field reflects the currency used in the buyer's country. This value and the BuyItNowPrice will be the same for domestic buyers (for example, a US buyer purchasing an item on the US site).

Once a qualifying bid is made on an auction listing, the Buy It Now feature ceases being an option to interested buyers. Note that it is possible that the ConvertedBuyItNowPrice field may still get returned even after the Buy It Now feature is disabled, but the BuyItNowAvailable field should stop getting returned, since that field is only returned when true.

To see the fixed price for a fixed-price or classified ad listing, or the starting/current bid price for an auction listing, see the ConvertedCurrentPrice or CurrentPrice fields instead.

IncludeSelector: none (not controlled by IncludeSelector)

See:
    Item.BuyItNowAvailable
    Item.BuyItNowPrice
    Item.ConvertedCurrentPrice
    (eBay Help) Buy It Now in auction listings

Item.ConvertedBuyItNowPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field is only returned if a seller enabled an auction listing with the Buy It Now feature. Sellers have the option of enabling the Buy It Now feature on auction listings. The price in this field is the price that an interested buyer has to pay if that buyer wishes to bypass the auction procedure, and purchase the item immediately. The price in the field reflects the currency used in the buyer's country. This value and the BuyItNowPrice will be the same for domestic buyers (for example, a US buyer purchasing an item on the US site).

Once a qualifying bid is made on an auction listing, the Buy It Now feature ceases being an option to interested buyers. Note that it is possible that the ConvertedBuyItNowPrice field may still get returned even after the Buy It Now feature is disabled, but the BuyItNowAvailable field should stop getting returned, since that field is only returned when true.

To see the fixed price for a fixed-price or classified ad listing, or the starting/current bid price for an auction listing, see the ConvertedCurrentPrice or CurrentPrice fields instead.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ConvertedCurrentPrice AmountType (double) Always In a fixed-price or classified ad listing, this price is the current price of the item, shown in the currency of the user's country. In an active auction listing, this field's value reflects the current bid price for the auction item, so any submitted bids must be above this value. If the Buy It Now feature is available for an auction item (look for BuyItNowAvailable field), the user will want to look at the ConvertedBuyItNowPrice field instead if that user is interested in skipping the auction process and buying that item immediately.

Note: If the user retrieves a multiple-variation listing, and the IncludeSelector filter is set to Variations, the ConvertedCurrentPrice field is still returned, but its value will reflect the lowest-priced item variation. So, if the multiple-variation listing has item variations priced from 7.99 to 12.99, the ConvertedCurrentPrice field's value will show '7.99'. If the price of all item variations are the same, the ConvertedCurrentPrice field value will be accurate, but it is recommended that the user scan down to individual Variation.StartPrice fields to get the accurate price for all item variations.

IncludeSelector: none (not controlled by IncludeSelector)

See:
    Item.BuyItNowAvailable
    Item.ConvertedBuyItNowPrice
    Item.Variations.Variation.StartPrice

Item.ConvertedCurrentPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally In a fixed-price or classified ad listing, this price is the current price of the item, shown in the currency of the user's country. In an active auction listing, this field's value reflects the current bid price for the auction item, so any submitted bids must be above this value. If the Buy It Now feature is available for an auction item (look for BuyItNowAvailable field), the user will want to look at the ConvertedBuyItNowPrice field instead if that user is interested in skipping the auction process and buying that item immediately.

Note: If the user retrieves a multiple-variation listing, and the IncludeSelector filter is set to Variations, the ConvertedCurrentPrice field is still returned, but its value will reflect the lowest-priced item variation. So, if the multiple-variation listing has item variations priced from 7.99 to 12.99, the ConvertedCurrentPrice field's value will show '7.99'. If the price of all item variations are the same, the ConvertedCurrentPrice field value will be accurate, but it is recommended that the user scan down to individual Variation.StartPrice fields to get the accurate price for all item variations.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Country CountryCodeType Always A two-letter code that represents the country in which the item is located.

To see the list of currently supported country codes, and the English names associated with each code (e.g., KY="Cayman Islands"), call the Trading API's GeteBayDetails, with DetailName set to CountryDetails, and then look for CountryDetails.Country fields in the response.

Most of the codes that eBay uses conform to the ISO 3166 standard, but some of the codes in the ISO 3166 standard are not used by eBay. Plus, there are some non-ISO codes in the eBay list.

Note: The CountryCodeType list is only a subset of all supported country codes, so to ensure that you are seeing the latest list, you should make a GeteBayDetails call as explained above.

Applicable values: See Country.
Code so that your app gracefully handles any future changes to this list.

IncludeSelector: none (not controlled by IncludeSelector)
Item.CurrentPrice AmountType (double) Conditionally In a fixed-price or classified ad listing, this price is the current price of the item, shown in the currency of the listing site's country. In an active auction listing, this field's value reflects the current bid price for the auction item, so any submitted bids must be above this value. If the Buy It Now feature is available for an auction item (look for BuyItNowAvailable field), the user will want to look at the ConvertedBuyItNowPrice (or ConvertedBuyItNowPrice) field instead if that user is interested in skipping the auction process and buying that item immediately.

This field is only returned if the IncludeSelector field is included and set to Details. Alternatively, the user can view the ConvertedCurrentPrice field, as this field shows the price in the currency of the user's country, and it is always returned.

Note: If the user retrieves a multiple-variation listing, and the IncludeSelector filter is set to Variations, the CurrentPrice is not returned, but the ConvertedCurrentPrice field is returned, but its value will reflect the lowest-priced item variation. So, if the multiple-variation listing has item variations priced from 7.99 to 12.99, the ConvertedCurrentPrice field's value will show '7.99'. If the price of all item variations are the same, the ConvertedCurrentPrice field value will be accurate, but it is recommended that the user scan down to individual Variation.StartPrice fields to get the accurate price for all item variations.

IncludeSelector: Details
Item.CurrentPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally In a fixed-price or classified ad listing, this price is the current price of the item, shown in the currency of the listing site's country. In an active auction listing, this field's value reflects the current bid price for the auction item, so any submitted bids must be above this value. If the Buy It Now feature is available for an auction item (look for BuyItNowAvailable field), the user will want to look at the ConvertedBuyItNowPrice (or ConvertedBuyItNowPrice) field instead if that user is interested in skipping the auction process and buying that item immediately.

This field is only returned if the IncludeSelector field is included and set to Details. Alternatively, the user can view the ConvertedCurrentPrice field, as this field shows the price in the currency of the user's country, and it is always returned.

Note: If the user retrieves a multiple-variation listing, and the IncludeSelector filter is set to Variations, the CurrentPrice is not returned, but the ConvertedCurrentPrice field is returned, but its value will reflect the lowest-priced item variation. So, if the multiple-variation listing has item variations priced from 7.99 to 12.99, the ConvertedCurrentPrice field's value will show '7.99'. If the price of all item variations are the same, the ConvertedCurrentPrice field value will be accurate, but it is recommended that the user scan down to individual Variation.StartPrice fields to get the accurate price for all item variations.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Description string Conditionally The seller's description of the listing. This field is only returned if the IncludeSelector field is included in the call request, and its value is set to either TextDescription or Description. If the Description value is used, the full description is returned, with all HTML, XML, or CSS markup used in the listing (if any) by the seller. To only view the actual text of the listing description (no markup tags), the TextDescription value shall be used instead.
Max length: 500000 (including any HTML, XML, CSS, etc. markup).

IncludeSelector: Description, TextDescription
Item.DiscountPriceInfo DiscountPriceInfoType Conditionally This container provides information for an item that has a Strikethrough Price (STP) or a Minimum Advertised Price (MAP) discount pricing treatment. STP and MAP apply only to fixed-price listings. STP is available on the US, eBay Motors, UK, Germany, Canada (English and French), France, Italy, and Spain sites, while MAP is available only on the US site.

Discount pricing is available to qualified sellers (and their associated developers) who participate in the Discount Pricing Program. Once qualified, sellers receive a "special account flag" (SAF) that allows them to apply Discount Pricing to both single-variation and multi-variation listings.

IncludeSelector: Details
Item.DiscountPriceInfo
  .MinimumAdvertisedPrice
AmountType (double) Conditionally A value equal to the agreed upon minimum advertised price.

The minimum advertised price is an agreed upon price that is set by the suppliers/OEMs and the retailers/sellers. The minimum advertised price is the lowest price for which an item can be advertised. Large volume sellers can negotiate with the suppliers/OEMs to offer certain items below the set minimum advertised price. eBay does not maintain or validate the agreed upon minimum advertised price; the seller is responsible for setting this value in accordance with their agreement with the supplier/OEMs. MAP pricing treatments apply to only fixed-price, listings on the eBay US site.
Item.DiscountPriceInfo
  .MinimumAdvertisedPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally A value equal to the agreed upon minimum advertised price.

The minimum advertised price is an agreed upon price that is set by the suppliers/OEMs and the retailers/sellers. The minimum advertised price is the lowest price for which an item can be advertised. Large volume sellers can negotiate with the suppliers/OEMs to offer certain items below the set minimum advertised price. eBay does not maintain or validate the agreed upon minimum advertised price; the seller is responsible for setting this value in accordance with their agreement with the supplier/OEMs. MAP pricing treatments apply to only fixed-price, listings on the eBay US site.

For a list of possible enumeration values, see CurrencyCodeType.
Item.DiscountPriceInfo
  .MinimumAdvertisedPriceExposure
MinimumAdvertisedPriceExposureCodeType Conditionally This field is only returned for US-based listings eligible for, and using the MAP feature. The enumeration value returned in this field indicates how/when the Minimum Advertised Price will be displayed to the buyer. See the descriptions for each enumeration value for more information.

Applicable values:

CustomCode
(out) Reserved for future use.
DuringCheckout
(out) This enumeration value indicates that the discounted price will only be shown to the buyer once the buyer reaches the eBay Checkout page.
None
(out) This enumeration value indicates that the discounted price is shown on the View Item page, and the buyer is not required to add the item to his/her cart or click Buy button to view the discounted price.
PreCheckout
(out) This enumeration value indicates that the buyer must add the item to his/her cart before the discounted price can be displayed.

Code so that your app gracefully handles any future changes to this list.
Item.DiscountPriceInfo
  .OriginalRetailPrice
AmountType (double) Conditionally This field specifies the price to which the discounted-price display treatment will be applied (for example, a strikethrough price). The discounted price of an item is shown in the CurrentPrice field, and is always less than the value in this field.

See Displaying Discount Pricing Information to Buyers for guidelines on displaying STP and MAP items.

Item.DiscountPriceInfo
  .OriginalRetailPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field specifies the price to which the discounted-price display treatment will be applied (for example, a strikethrough price). The discounted price of an item is shown in the CurrentPrice field, and is always less than the value in this field.

For a list of possible enumeration values, see CurrencyCodeType.
Item.DiscountPriceInfo
  .PricingTreatment
PricingTreatmentCodeType Conditionally This field denotes whether or not an item qualifies for a discount pricing treatment display, such as STP or MAP. If this field is set to MAP, you must abide by the rules for displaying MAP items, as described in the MinimumAdvertisedPriceExposure field.

Important: For listings that return PricingTreatment set to MAP, you are legally required to follow the rules for displaying the price of the item to potential buyers. You are bound by the terms of the API License Agreement to follow these rules. Refer to the API License Agreement for consequences of non-compliance.

Applicable values:

CustomCode
(out) Reserved for future use.
MAP
(out) This enumeration value indicates that Minimum Advertised Pricing is enabled for the order line item. If this value is returned, the minimum advertised price is found in the MinimumAdvertisedPrice field.
None
(out) This enumeration value indicates that neither Strikethrough Pricing or Minimum Advertised Pricing is enabled for the order line item.
STP
(out) This enumeration value indicates that Strikethrough Pricing is enabled for the order line item. If this value is returned, the price in the OriginalRetailPrice field will be crossed out in the View Item page.

Code so that your app gracefully handles any future changes to this list.
Item.DiscountPriceInfo
  .SoldOffeBay
boolean Conditionally Used by the eBay UK and eBay Germany (DE) sites, this field indicates that the discount price (shown in CurrentPrice field) is the price for which the seller offered the same item for sale on a web site or offline store other than eBay in the previous 30 days. The discount price is always in reference to the seller's own price for the item.

In the event both SoldOffeBay and SoldOneBay fields are set, SoldOneBay takes precedence.
Item.DiscountPriceInfo
  .SoldOneBay
boolean Conditionally Used by the eBay UK and eBay Germany (DE) sites, this field indicates that the discount price (shown in CurrentPrice field) is the price for which the seller offered the same (or similar) item for sale on eBay within the previous 30 days. The discount price is always in reference to the seller's own price for the item.

In the event both SoldOffeBay and SoldOneBay fields are set, SoldOneBay takes precedence.
Item.EligibleForPickupDropOff boolean Conditionally This boolean field is returned as true if the listing category supports 'Click and Collect' listings. A true value does not necessarily mean that the seller has enabled the item with the Click and Collect feature. A listing is enabled with the Click and Collect feature if the AvailableForPickupDropOff field is returned as true.

With Click and Collect, buyers are able to purchase from thousands of sellers on the eBay UK, Australia, and Germany sites, and then pick up their order from the nearest 'eBay Collection Point', including over 750 Argos stores in the UK. The Click and Collect feature is only available on the eBay UK, Australia, and Germany sites. For more information about Click and Collect, see the Click and Collect home page on the eBay UK site, the Click and Collect home page on the eBay Australia site, or the Click and Collect home page on the eBay Germany site.

IncludeSelector: Details
Item.EndTime dateTime Always For active listings, this timestamp indicates the date and time when the listing is scheduled to end, and for recently ended listings, this timestamp indicates the date and time when the listing actually ended.

IncludeSelector: none (not controlled by IncludeSelector)
Item.ExcludeShipToLocation string Conditionally,
repeatable: [0..*]
An ExcludeShipToLocation field is returned for each geographical region, country, state/province, city, or other special domestic location that the seller has added to their 'Excluded shipping locations' list. Sellers can exclude shipping locations through the Shipping preferences in My eBay, through a Shipping Business Policy that is associated with the listing, or through an Add/Revise/Relist call in the Trading API. Buyers in excluded shipping locations will be blocked from buying the item. If a seller has not created an 'Exclusion list' through any of the three means discussion below, no ExcludeShipToLocation fields are returned.

Geographical regions include the continents, as well as other geographical regions like the 'Middle East' or 'Southeast Asia'. Individual countries are represented by the two-digit ISO 3166-1 values. Special domestic regions will vary by country, but for the US, these value include 'Alaska/Hawaii', 'US Protectorates', and 'PO Boxes'.

This field works in conjunction with Item.ShipToLocations to create a set of international countries and regions to where the seler will, and will not, ship. These values should not contradict one another.

DetailLevel: Details
Item.GalleryURL anyURI Conditionally This field shows the URL to the thumbnail-size image of the listing's Gallery picture. The 'Gallery Picture' is the picture that displays by default when a user first visits a listing's View Item page.

eBay listing images must be one of the following image formats: JPEG, BMP, TIF, or GIF.

This field is generally always returned as long as the seller is using eBay's picture server (also known as EPS) to host the listing's images.

IncludeSelector: none (not controlled by IncludeSelector)
Item.GlobalShipping boolean Conditionally This boolean field is returned as true if eBay's Global Shipping Program is an option for international shipping. With eBay's Global Shipping Program, the seller ships the item to that country's eBay shipping partner, and then eBay's shipping partner handles all aspects of the international leg of the shipment, including any export or import charges.

In addition to making the Global Shipping Program available for international shipment, the seller can also specify up to four other international shipping service options. This may be necessay if the shipment is going to a country where the Global Shipping Program is not available.

If the value of GlobalShipping is false, the seller is responsible for specifying one or more international shipping service options to serve those countries that the seller is willing to ship items.

IncludeSelector: Details
Item.HandlingTime int Conditionally Specifies the maximum number of business days the seller commits to for preparing an item to be shipped after receiving a cleared payment. Typically, the seller's stated handling time ranges from zero to three business days. This time does not include the expected transit time of the shipping service option selected by the buyer.

GetSingleItem or GetMultipleItems returns HandlingTime in most cases, but there may be instances where the seller has not specified any shipping service options, or the the type of listing or eBay category does not require a handling time. For example, handling time is not relevant for 'local pickup' only, for freight shipping, or for classified ad listings where the transaction and delivery/shipping happens off of eBay's platform.

A HandlingTime value of 0 indicates same business day handling for an item. In this case, the seller's shipping commitment depends on the order cut off time set in the seller's My eBay Shipping preferences. The buyer must purchase and pay for the order line item before this order cut off time in order for the seller to be obligated to ship out the order on that same business day. A different cutoff time can be specified for each business day of the week. By default, the order cut off time is set to 2:00 PM local time on most sites, but the seller can change the times for any of the business days. For orders completed after the order cut off time, the item must be shipped by the end of the following business day (weekends and local holidays excluded).

IncludeSelector: Details

See Handling Time and Estimated Delivery Time for details about same day handling and default cutoff times.

Item.HighBidder SimpleUserType Conditionally This container provides a few details about the current high bidder for an active auction listing, or the winning bidder for a completed auction listing. This container is only returned for auction listings with at least one bid, and only if the IncludeSelector filter is included in the request and set to Details. The high bidder details include the bidder's eBay user ID and Feedback Score. For the GetItemStatus call, only the eBay user ID is returned.

Note: The eBay user ID and the Feedback data will actually be obfuscated to all users except for the owner (seller) of the listing, so essentially, the HighBidder container only has value to the seller of the listing.

IncludeSelector: Details
Item.HighBidder
  .FeedbackPrivate
boolean Conditionally This boolean value indicates whether or not the eBay user has chosen to make their Feedback Profile private in My eBay. A private Feedback Profile only means that individual Feedback comments are hidden, but other Feedback statistics will still be displayed, including the total Feedback score and the Positive Feedback Percentage.

Sellers on eBay marketplaces do not have the option of making their Feedback Profile private, and they will be blocked from listing if they try to list items with a private Feedback Profile.

IncludeSelector: Details
Item.HighBidder
  .FeedbackRatingStar
FeedbackRatingStarCodeType Conditionally This enumeration value indicates the eBay user's Feedback Rating Star. A different colored star is associated with each Feedback Score range. For more details on the Feedback Score ranges (and colored stars associated with each range), see FeedbackRatingStarCodeType.

Applicable values: See FeedbackRatingStar.
Code so that your app gracefully handles any future changes to this list.

IncludeSelector: Details
Item.HighBidder.FeedbackScore int Conditionally The aggregate Feedback score of an eBay user. A user's Feedback score is determined by the total number of Positive Feedback ratings minus the total number of Negative Feedback ratings the user has received. Any Neutral Feedback ratings do not affect the Feedback Score.

A user's Feedback Score is a quantitative expression of the desirability of dealing with that user as a buyer or a seller. A buyer can leave Positive, Neutral, or Negative Feedback for the seller, but a seller can only leave Positive Feedback for the buyer.

IncludeSelector: Details
Item.HighBidder.UserAnonymized boolean Conditionally Indicates whether eBay has made this user's information anonymous.

If true, certain other fields about this user are not returned, or their values are masked.

IncludeSelector: Details
Item.HighBidder.UserID string Conditionally The unique identifier of the eBay user. An eBay user ID is unique across all eBay marketplaces.

This field is generally always returned, but it may be masked depending on the situation. For example, if anyone other than the seller of the listing runs a GetItemStatus call on an active auction listing with one or or bids, the UserID value will be masked something like this - b***r.

IncludeSelector: Details
Item.HitCount long Conditionally Deprecated as of version 1247. No longer functional.
THIS FIELD IS DEPRECATED. Hit counters are no longer displayed in View Item pages, so this field is no longer applicable and is scheduled for decommission.

For developers/sellers who are interested in seeing page views and listing performance, the getTrafficReport method of the Sell Analytics API can be used.

Until this field is decommissioned, it will still be returned in GetSingleItem and GetMultipleItems.

IncludeSelector: Details
Deprecation version: 1247. See also Deprecated Objects.
Item.IgnoreQuantity boolean Conditionally This field is only be returned (as true) in the case where an order line item in a listing is only available to buyers through a local fulfillment method such as In-Store Pickup or Click and Collect. And if a listing is truly a local fulfillment only listing, the value in the Item.Quantity field (for single-variation listings) or the Variation.Quantity field (for multi-variation listings) defaults to 0 even though the quantity available is technically not zero, since the order line item in the listing is still available through one or more local fulfillment methods.

IncludeSelector: Details
Item
  .IntegratedMerchantCreditCardEnabled
boolean Conditionally This field is no longer applicable as eBay sellers can no longer use iMCC gateway accounts to handle buyer payments.

IncludeSelector: Details
Item.ItemCompatibilityCount int Conditionally This integer value indicates the number of distinct motor vehicles that are compatible with the part or accessory being offered in the listing. The compatible vehicle list is shown in the ItemCompatibilityList container.

This field only applies to motor vehicle parts and accessory listings with an associated vehicle compatibility list. Seller can manually create their own vehicle compatibility list when listing the item, or a vehicle compatibility list may be added to the listing automatically if the seller uses an eBay catalog product record to create the listing.

To retrieve the compatibility count and the compatible vehicle list, include the IncludeSelector field in the request with a value of Compatibility. Parts Compatibility is only supported in Parts & Accessories categories.

IncludeSelector: Compatibility
Item.ItemCompatibilityList ItemCompatibilityListType Conditionally A list of distinct motor vehicles that are compatible with the part or accessory being offered in the listing. Compatible vehicles are expressed through a set of name-value pairs with aspects such as 'Year, 'Make', 'Model', 'Trim', and 'Engine'. Each set of values describe the specific vehicle, such as a '2016 Honda Accord'.

This field only applies to motor vehicle parts and accessory listings with an associated vehicle compatibility list. Seller can manually create their own vehicle compatibility list when listing the item, or a vehicle compatibility list may be added to the listing automatically if the seller uses an eBay catalog product record to create the listing.

To retrieve the compatibility count and the compatible vehicle list, include the IncludeSelector field in the request with a value of Compatibility. Parts Compatibility is only supported in Parts & Accessories categories.

IncludeSelector: Compatibility
Item.ItemCompatibilityList
  .Compatibility
ItemCompatibilityType Conditionally,
repeatable: [0..*]
A Compatibility container is returned for each motor vehicle that is compatible with the motor vehicle part or accessory. The Year, Make, Model, Trim, and Engine type of the vehicle is expressed through name-value pairs, and notes about compatibility (if available/applicable) is expressed through the CompatibilityNotes field.

IncludeSelector: Compatibility
Item.ItemCompatibilityList
  .Compatibility
  .CompatibilityNotes
string Conditionally This field contains any notes pertaining to the compatibility being specified. This field is only returned if set for the compatible vehicle.

IncludeSelector: Compatibility
Item.ItemCompatibilityList
  .Compatibility.NameValueList
NameValueListType Conditionally,
repeatable: [0..*]
Each NameValueList container will contain one aspect of a motor vehicle that is compatible with the motor vehicle part or accessory. For example, the allowed names might include 'Year', 'Make', and 'Model', 'Trim', and 'Engine'.

IncludeSelector: Compatibility
Item.ItemCompatibilityList
  .Compatibility.NameValueList
  .Name
string Conditionally The name of the Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, and individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

Note: To control the data that is returned in a GetSingleItem or GetMultipleItems response, the IncludeSelector filter should be included. To see listing-level Item Specifics, include the IncludeSelector field and set its value to ItemSpecifics. To see variation-level Item Specifics (only applicable for multiple-variation listings), include the IncludeSelector field and set its value to Variations. To see Parts Compatibility name/value pairs (only applicable for motor vehicle part or accessory listings with a compatible vehicle list), include the IncludeSelector field and set its value to Compatibility.

IncludeSelector: Compatibility
Item.ItemCompatibilityList
  .Compatibility.NameValueList
  .Value
string Conditionally,
repeatable: [0..*]
The corresponding value of an Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, an individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

IncludeSelector: Compatibility
Item.ItemID string Always The unique identifier of the eBay listing. This will be the same ItemID value that is passed into the call request.

IncludeSelector: none (not controlled by IncludeSelector)
Item.ItemSpecifics NameValueListArrayType Conditionally This container is a list of Item Specific name-value pairs used by the seller to provide desciptive details of an item in a structured manner. Depending on the eBay category, some Item Specifics are mandatory (including some GTIN values), some are recommended by eBay, and some are fully optional to the seller. A full set of helpful, accurate Item Specifics are always helpful to prospective buyers in assisting them to find and purchase the right product.

A book's Item Specifics name-value pairs might include Publication Year=2017 and Format=Hardcover. A motor vehicle's Item Specifics name-value pairs might include Make= Toyota, Model=Prius, and Year=2017. An event listing's Item Specifics name-value pairs might include Event Type=Concert and Venue Name=The Fillmore.

In order for Item Specifics to be returned, the IncludeSelector must be included in the call request and set to ItemSpecifics. Most eBay listings will include at least a few Item Specifics.

IncludeSelector: ItemSpecifics
Item.ItemSpecifics
  .NameValueList
NameValueListType Conditionally,
repeatable: [0..*]
This list is an array of Item Specifics name-value pairs for an eBay Catalog product (if FindProducts is used) or Item Specifics name-value pairs for a single-variation listing or individual variation within a multiple-variation listing (if GetSingleItem or GetMultipleItems is used).

For example, Item Specifics for a motor vehicle might include a field like Make=Toyota (where Make is returned in Name field, and Toyota is returned in Value field) and Model=Prius (where Model is returned in Name field, and Prius is returned in Value field).

In multiple-variation listings, the same name cannot appear in both the ItemSpecifics node and Variation.VariationSpecifics nodes. Common aspects for all variations within the multiple-variation listings will appear in the ItemSpecifics node, and aspects unique to individual variations within the multiple-variation listings will appear in the Variation.VariationSpecifics nodes.

For GetSingleItem, the user can use the NameValueList container in the call input to identify one or more variations to retrieve from a specific multiple-variation listing.

IncludeSelector: ItemSpecifics
Item.ItemSpecifics
  .NameValueList.Name
string Conditionally The name of the Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, and individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

Note: To control the data that is returned in a GetSingleItem or GetMultipleItems response, the IncludeSelector filter should be included. To see listing-level Item Specifics, include the IncludeSelector field and set its value to ItemSpecifics. To see variation-level Item Specifics (only applicable for multiple-variation listings), include the IncludeSelector field and set its value to Variations. To see Parts Compatibility name/value pairs (only applicable for motor vehicle part or accessory listings with a compatible vehicle list), include the IncludeSelector field and set its value to Compatibility.

IncludeSelector: ItemSpecifics
Item.ItemSpecifics
  .NameValueList.Value
string Conditionally,
repeatable: [0..*]
The corresponding value of an Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, an individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

IncludeSelector: ItemSpecifics
Item.ListingStatus ListingStatusCodeType Always This enumeration value indicates the current status of the listing. The three different listing states are discussed below.

Applicable values:

Active
(out) This enumeration value indicates that the listing is still active. A multiple-quantity, fixed-price listing is considered active until the quantity available is '0', or the listing's scheduled end time has passed.
Completed
(out) This enumeration value indicates that the listing has ended and eBay has completed processing any sales/winning bids, and the calculation of the seller's Final Value Fee.
CustomCode
(out) This enumeration is reserved for future use.
Ended
(out) This enumeration value indicates that the listing has ended and eBay has completed processing any sales/winning bids. The next state after 'Ended' is 'Completed'.

Code so that your app gracefully handles any future changes to this list.

IncludeSelector: none (not controlled by IncludeSelector)
Item.ListingType ListingTypeCodeType Always The enumeration value in this field indicates the format of the listing, such as auction, fixed-price, or classified ad format. See the ListingTypeCodeType definition to view the supported enumeration values.

Applicable values: See ListingType.
Code so that your app gracefully handles any future changes to this list.

IncludeSelector: none (not controlled by IncludeSelector)
Item.Location string Always The text string in this field provides the physical location of the item. Generally, this text will show the city and state/province of the item's location, but it may vary, and sometimes only a city will appear, or sometimes acronymns will be used, and other times the full city and state will be spelled out. This gives the buyer a general indication of where the item will be shipped from, and if calculated shipping is used, shipping charges may be higher the further away that the buyer resides from the shipping location.

IncludeSelector: none (not controlled by IncludeSelector)
Item.LotSize int Conditionally A lot is a collection or set of two or more similar or identical items that must be purchased together in a single transaction, through an auction or a fixed-price listing. Examples of lot-based listings may include a collection of baby clothes, a collection of books or magazines, or a set of identical items such as batteries or light bulbs. The LotSize is the number of items in the lot.

A fixed-price listing can have multiple lots available for purchase, but if this is the case, each lot available in that listing should be identical (instead of a mixed collection of items). So, if a fixed-price listing has multiple lots available for purchase, the number of lots available for purchase is shown in the Item.Quantity field.

Not all eBay listing categories support lot-based listings. To see which eBay listing categories do not support lot-based listing, a user can use the Trading API's GetCategories call and then look for any Category.LSD tags (with value of true) that are returned in the response.

IncludeSelector: Details
Item.MinimumToBid AmountType (double) Conditionally This field is only returned for auction listings. The value in this field is the minimum value that the next bid on the item must be to be accepted. If no bids have been placed on the item, the value in this field will be the same value that is returned in the Item.ConvertedCurrentPrice field.

IncludeSelector: Details
Item.MinimumToBid
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field is only returned for auction listings. The value in this field is the minimum value that the next bid on the item must be to be accepted. If no bids have been placed on the item, the value in this field will be the same value that is returned in the Item.ConvertedCurrentPrice field.

For a list of possible enumeration values, see CurrencyCodeType.
Item.PaymentAllowedSite SiteCodeType Always,
repeatable: [1..*]
Enables you to view the sites on which an item can be purchased, based on the payment methods offered for the item.

Applicable values: See PaymentAllowedSite.
Code so that your app gracefully handles any future changes to this list.

IncludeSelector: Details
Item.PaymentMethods BuyerPaymentMethodCodeType Conditionally,
repeatable: [0..*]
Identifies the payment method(s) that are available to a buyer to purchase the order line item.

Applicable values:

CashOnPickup
(out) This enumeration value is returned in a PaymentMethods field if 'Cash on Pickup' is accepted as a form of payment for the order line item. This payment method is only applicable if the buyer and seller will be handling payment offline.
CustomCode
(out) Reserved for internal or future use.
MOCC
(out) This enumeration value is returned in a PaymentMethods field if a money order or cashier's check is accepted as a form of payment for the order line item. This payment method is only applicable if the buyer and seller will be handling payment offline.
PersonalCheck
(out) This enumeration value is returned in a PaymentMethods field if a personal check is accepted as a form of payment for the order line item. This payment method is only applicable if the buyer and seller will be handling payment offline.

(Not all values in BuyerPaymentMethodCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.

IncludeSelector: Details
Item.PictureURL anyURI Always,
repeatable: [1..24]
This field shows the URL to a full-size version of one image associated with the eBay listing. A PictureURL field is returned for each image in the eBay listing. At least one PictureURL field is always returned since every eBay listing must have at least one picture.

Many eBay categories support up to 12 pictures, and motor vehicle categories support up to 24 pictures.

IncludeSelector: none (not controlled by IncludeSelector)
Item.PostalCode string Conditionally This string value is the postal code (or zip code) of the item's physical location. Knowing the location gives the buyer a general indication of where the item will be shipped from, and if calculated shipping is used, shipping charges may be higher the further away that the buyer resides from the shipping location.

Note: As of late January 2020, the displayed postal code returned in GetSingleItem and GetMultipleItems is now masked to all users except for the seller of the item. Different countries will mask postal/zip codes in slightly different ways, but an example would be 951**.

IncludeSelector: Details
Item.PrimaryCategoryID string Always The unique identifier of the eBay listing's primary category. This field is always returned. Some listings are shown in an additional secondary category, and if this is the case, the unique identifier of the secondary category is shown in the SecondaryCategoryID field.

IncludeSelector: none (not controlled by IncludeSelector)
Item.PrimaryCategoryIDPath string Conditionally This field shows the full path to the primary listing category, starting with the Category ID of the Level 1 (L1) category, and all the way to primary listing category (also referred to as the leaf category). So, if the primary listing category is a Level 4 (L4) category, the Category ID path in this field might look like the following, where '6000' is the L1 category ID, and '6444' is the primary listing category ID:

6000:6001:6016:6444

IncludeSelector: Details
Item.PrimaryCategoryName string Always This string field shows the full category path (using category names) to the primary listing category, starting with the L1 category and ending with the name of the primary listing category. This is a fully qualified category breadcrumb (e.g., Cell Phones & Accessories:Cell Phones & Smartphones).

IncludeSelector: none (not controlled by IncludeSelector)
Item.ProductID ProductIDType (string) Conditionally This field is no longer returned in the GetSingleItem or GetMultipleItems calls. To view the eBay Product ID (also known as an ePID) or Global Trade Item Number (UPC, EAN, ISBN, or MPN) for a product in a listing (or product variation within a multiple-variation listing), use the Trading API's GetItem call instead.

IncludeSelector: Details
Item.Quantity int Conditionally The quantity of the item available for purchase when the seller created, revised, or relisted the item. An auction listing always has a Quantity value of 1, but a fixed-price listing can have multiple quantity of an item.

In a multiple-quantity, fixed-price listing, the user must also look at the QuantitySold field, and if the value of this field is an integer value greater than '0', that integer value should be subtracted from the value in the Quantity field. So, if the Quantity field shows a value of '7', and the QuantitySold field shows a value of '3', the quantity available is actually '4' (7 - 3 = 4).

Note: The Quantity field is always returned except in the case of a multiple-variation listing, and the user sets the IncludeSelector filter to Variations. In this particular case, the (listing-level) Quantity field is not returned, and instead, the user will look at the Variation.Quantity and Variation.SellingStatus.QuantitySold fields to get the quantity available for each item variation in the listing. If the user retrieves a multiple-variation listing, but does not set the IncludeSelector filter to Variations, the listing-level Quantity and QuantitySold fields are returned, and these fields' values will be the cumulative values of all item variations in the listing.
Note: As mentioned earlier, an auction listing can only have a quantity of '1', but a lot-based auction listing can have multiple identical/similar items sold as one unit for one price. For example, instead of listing 10 light bulbs for US 2.00 each, they might list 10 light bulbs for USD 20.00 (where you have to buy all 10). For lot-based listings (which are also supported by the fixed-price format), the number of identical/similar items in the 'lot' is shown in the LotSize field. The seller is also expected to summarize all items in the lot in the Description field.

IncludeSelector: Details

See Item.ListingType.

Item.QuantityAvailableHint QuantityAvailableHintCodeType Conditionally The enumeration returned in this field indicates if the listing displays a 'quantity available' hint on the View Item page. For example, the View Item page may say 'Limited quantity available', or it may say 'More than 10 available'. It is up to the seller of the listing whether or not to included a 'quantity available' hint in the listing. The 'quantity available' feature is used by the seller that prefers not to show the actual quantity available for purchase.

This field is only applicable to multiple-quantity, fixed-price listings, and will only be returned if the seller set this feature on the listing.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
Limited
(out) If this enumeration value is returned, the message on the View Item page is "Limited quantity available", based on a quantity threshold.
MoreThan
(out) If this enumeration value is returned, the message on the View Item page is "More than 10 available", as long as there is more than a quantity of 10 order line items available.

Code so that your app gracefully handles any future changes to this list.

IncludeSelector: Details
Item.QuantityInfo QuantityInfo Conditionally This container consists of the MinimumRemnantSet field, which indicates the minimum amount of event tickets that can remain in the fixed-price listing's inventory after a buyer purchases one or more tickets (but not all) from the listing.

This field is currently only applicable for event ticket listings in US and CA, but may apply to other categories in the future. It is only returned if set by the seller in the listing.

IncludeSelector: none (not controlled by IncludeSelector)
Item.QuantityInfo
  .MinimumRemnantSet
int Conditionally This field indicates the minimum ticket quantity that must remain after a buyer purchases one or more (but not all) tickets in an event-based listing. This feature helps the seller avoid the scenario of being left with only one ticket in a multiple-quantity, fixed-priced event-based listing. In some cases, a solo seat to an event can be harder to sell, especially as the event date approaches.

Based on the value of MinimumRemnantSet and the listing's available quantity (Quantity-QuantitySold), eBay calculates the quantity of tickets that a buyer can purchase. For example, suppose a seller lists 5 tickets, and wants at least 2 tickets remaining for the final buyer to purchase. In this case, the seller would set MinimumRemnantSet to '2'. This means a buyer can purchase 1, 2, 3, or 5 tickets, but not 4 (because 4 would leave the seller with 1 ticket).

This field is currently only applicable for event ticket listings in the US and CA marketplaces, but may apply to other categories in the future. It is only returned if set by the seller in the listing.
Item.QuantitySold int Conditionally This integer value indicates the quantity of items sold for the listing. If the IncludeSelector filter is included in the request and set to Details, this field is always returned even if its value is '0'.

If the QuantitySold value is greater than '0', this value should be subtracted from the value in the Quantity field to get the accurate quantity that is available for purchase.

Note: If the IncludeSelector filter is included in the request and set to Details, but the retrieved listing is a multiple-variation listing, the Quantity and QuantitySold field values will reflect the quantity and quantity sold of all item variations in the listing. If a user wanted quantity available and quantity sold information on individual item variations, that user would set the IncludeSelector filter to Variations instead, and the user will look at the Variation.Quantity and Variation.SellingStatus.QuantitySold fields to get the quantity available for each item variation in the listing.

IncludeSelector: Details
Item
  .QuantitySoldByPickupInStore
int Conditionally This integer value indicates the quantity of items sold for the listing through the In-Store Pickup or Click and Collect option. If the IncludeSelector filter is included in the request and set to Details, this field is always returned even if its value is '0'.

If the QuantitySoldByPickupInStore value is greater than '0', this value (along with the value in QuantitySold) should be subtracted from the value in the Quantity field to get the accurate quantity that is available for purchase.

Note: If the IncludeSelector filter is included in the request and set to Details, but the retrieved listing is a multiple-variation listing, the Quantity, the QuantitySoldByPickupInStore, and QuantitySold field values will reflect the quantity and quantity sold of all item variations in the listing. If a user wanted quantity available and quantity sold information on individual item variations, that user would set the IncludeSelector filter to Variations instead, and the user will look at the Variation.SellingStatus.QuantitySoldByPickupInStore fields to get the quantity sold for each item variation in the listing through the In-Store Pickup option.
Note: The In-Store Pickup and Click and Collect features are generally only available to large retail merchants, and can only be applied to multi-quantity, fixed-price listings.

IncludeSelector: Details
Item.QuantityThreshold int Conditionally This field works together with the 'quantity available' feature. This integer value in this field controls whether the 'quantity available' hint on the View Item page will say 'Limited quantity available' or 'More than N available'. If this threshold value is '10', and the quantity available is any number more than 10, the 'quantity available' hint will read 'More than 10 available'. If the quantity available is '10' or less, the 'quantity available' hint will read 'Limited quantity available'.

IncludeSelector: Details
Item.ReserveMet boolean Conditionally This boolean field indicates if the current/highest bid price has matched or exceeded the price set as the Reserve Price by the seller. A Reserve Price is the lowest price at which the seller is willing to sell the item through an auction. If the highest bid does not meet or exceed the Reserve Price, the auction listing will end without a sale (winning bidder) when the scheduled end time is reached.

The Reserve Price must be higher than the starting bid price, but lower than the Buy It Now price (if one is set). This field is only applicable to auction listings, and only returned for auction listings if the seller has set a Reserve Price.

IncludeSelector: Details
Item.ReturnPolicy ReturnPolicyType Conditionally This container consists of details related to the seller's Return Policy, both for domestic and international buyers (if the seller ships internationally). If the seller does not accept returns, only the ReturnsAccepted field (or InternationalReturnsAccepted field for international buyers) is returned with a value of ReturnsNotAccepted. If a seller does accept returns, more details are returned, including the return period, the refund method, and the order partner (buyer or seller) who is responsible for return shipping costs. This container is only returned if the IncludeSelector field is included in the call request and set to Details.

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, the settings in the domestic return policy fields will be used instead for international returns.

IncludeSelector: Details
Item.ReturnPolicy.Description string Conditionally This field contains the seller's detailed explanation for their Return Policy. This same description is displayed in the Return Policy section of the View Item page. A Return Policy description (and this field) is only supported in the following marketplaces:
  • Germany (DE)
  • Spain (ES)
  • France (FR)
  • Italy (IT)

Max length: 5000 (8000 for DE).

IncludeSelector: Details
Item.ReturnPolicy
  .InternationalRefund
string Conditionally This field indicates how the seller compensates international buyers for remorse returns. On many eBay marketplaces, 'Money Back' is the only option for domestic and international returns. The eBay US marketplace also allows sellers to offer buyers a 'Money Back Or Replacement' option, where the seller still wants the item they purchased, and prefers that the seller send an identical replacement item instead of a refund. This will typically happen if the originally purchased item arrived damaged or was missing parts.

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, this field is not returned, and the refund method in the Refund field will also apply for international returns.

IncludeSelector: Details
Item.ReturnPolicy
  .InternationalReturnsAccepted
string Conditionally This field is always returned with the ReturnPolicy container if the seller ships items to other countries, even if the seller does not accept returns for the item. If the value of this field is ReturnsNotAccepted, the seller does not accept international returns (except in the case of a defective item or 'significantly not as described' item). If the value of this field is ReturnsAccepted, the seller does accept international returns, and other fields under the ReturnPolicy container will state the length of the international return period, the refund method, and order partner that is responsible for return shipping costs.

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, this field is not returned, and the 'returns accepted' value in the ReturnsAccepted field will also apply for international returns.

IncludeSelector: Details
Item.ReturnPolicy
  .InternationalReturnsWithin
string Conditionally The value in this field indicates the number of days that an international buyer has to return an item. The return period begins when the item is marked "delivered" at the buyer's specified ship-to location. Most marketplaces and categories support 30-day and 60-day return periods. The return period must be specified by the seller if that seller accepts international returns from countries they ship to (InternationalReturnsAcceptedOption=ReturnsAccepted).

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, this field is not returned, and the return period in the ReturnsWithin field will also apply for international returns.

IncludeSelector: Details
Item.ReturnPolicy
  .InternationalShippingCostPaidBy
string Conditionally This field specifies either the 'Buyer' or the 'Seller' as the party who pays for international return shipping costs. It is up to the seller to decide whether the buyer or seller pays for return shipping costs, but the seller does have an incentive to pay return shipping costs, as the listing will be marked in search results as having 'Free Returns' if the seller pays return shipping costs.

Note that the seller is always responsible for return shipping costs for SNAD-related issues, including defective items.

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, this field is not returned, and the return shipping cost payee in the ShippingCostPaidBy field will also apply for international returns.

IncludeSelector: Details
Item.ReturnPolicy.Refund string Conditionally This field indicates how the seller compensates domestic buyers for remorse returns. On many eBay marketplaces, 'Money Back' is the only option for domestic and international returns. The eBay US marketplace also allows sellers to offer buyers a 'Money Back Or Replacement' option, where the seller still wants the item they purchased, and prefers that the seller send an identical replacement item instead of a refund. This will typically happen if the originally purchased item arrived damaged or was missing parts.

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, the refund method in this field will also apply for international returns.

IncludeSelector: Details
Item.ReturnPolicy
  .ReturnsAccepted
string Conditionally This field is always returned with the ReturnPolicy container, even if the seller does not accept returns for the item. If the value of this field is ReturnsNotAccepted, the seller does not accept domestic returns (except in the case of a defective item or 'significantly not as described' item), and this field may be the only field returned under the ReturnPolicy container. If the value of this field is ReturnsAccepted, the seller does accept domestic returns, and other fields under the ReturnPolicy container will state the length of the return period, the refund method, and order partner that is responsible for return shipping costs.

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, the 'returns accepted' value in this field will also apply for international returns.

IncludeSelector: Details
Item.ReturnPolicy
  .ReturnsWithin
string Conditionally The value in this field indicates the number of days that a domestic buyer has to return an item. The return period begins when the item is marked 'delivered' at the buyer's specified ship-to location. Most marketplaces and categories support 30-day and 60-day return periods. The return period must be specified by the seller if that seller accepts returns (ReturnsAcceptedOption=ReturnsAccepted).

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, the return period in this field will also apply for international returns.

IncludeSelector: Details
Item.ReturnPolicy
  .ShippingCostPaidBy
string Conditionally This field specifies either the 'Buyer' or the 'Seller' as the party who pays for domestic return shipping costs. It is up to the seller to decide whether the buyer or seller pays for return shipping costs, but the seller does have an incentive to pay return shipping costs, as the listing will be marked in search results as having 'Free Returns' if the seller pays return shipping costs.

Note that the seller is always responsible for return shipping costs for SNAD-related issues, including defective items.

Note: If the seller ships internationally, but did not specify a separate international return policy for the listing, the return shipping cost payee in this field will also apply for international returns.

IncludeSelector: Details
Item.SecondaryCategoryID string Conditionally The unique identifier of the eBay listing's secondary category. This field is only returned if the listing is surfacing in a secondary category. The listing's primary category is found in the PrimaryCategoryID field.

IncludeSelector: Details
Item.SecondaryCategoryIDPath string Conditionally This field shows the full path to the secondary listing category, starting with the Category ID of the Level 1 (L1) category, and all the way to secondary listing category. This field is only returned if the listing is surfacing in a secondary category.

IncludeSelector: Details
Item.SecondaryCategoryName string Conditionally This string field shows the full category path (using category names) to the secondary listing category, starting with the L1 category and ending with the name of the secondary listing category. This field is only returned if the listing is surfacing in a secondary category.

IncludeSelector: Details
Item.Seller SimpleUserType Conditionally This container provides a few details about the listing's seller, including the seller's eBay user ID, Feedback Score, and Positive Feedback Percentage. This container is only returned if IncludeSelector is included in the request and set to Details.

IncludeSelector: Details
Item.Seller.FeedbackRatingStar FeedbackRatingStarCodeType Always This enumeration value indicates the eBay user's Feedback Rating Star. A different colored star is associated with each Feedback Score range. For more details on the Feedback Score ranges (and colored stars associated with each range), see FeedbackRatingStarCodeType.

Applicable values: See FeedbackRatingStar.
Code so that your app gracefully handles any future changes to this list.

IncludeSelector: Details
Item.Seller.FeedbackScore int Always The aggregate Feedback score of an eBay user. A user's Feedback score is determined by the total number of Positive Feedback ratings minus the total number of Negative Feedback ratings the user has received. Any Neutral Feedback ratings do not affect the Feedback Score.

A user's Feedback Score is a quantitative expression of the desirability of dealing with that user as a buyer or a seller. A buyer can leave Positive, Neutral, or Negative Feedback for the seller, but a seller can only leave Positive Feedback for the buyer.

IncludeSelector: Details
Item.Seller
  .PositiveFeedbackPercent
float Always This value is the percentage value of a seller's Feedback entries that were marked by buyer's as 'Positive'. This number is calculated by dividing the total number of Feedback entries left for the seller (Positive, Neutral, and Negative) by only the seller's 'Positive' Feedback ratings.

IncludeSelector: Details
Item.Seller.TopRatedSeller boolean Conditionally This boolean field is only returned if true, and indicates if the eBay user has Top-Rated Seller status. Top-Rated sellers are eligible to get the 'Top-Rated Plus' badge on all of their active listings (meeting Top-Rated Plus requirements), and qualify for other benefits such as Final Value Fee discounts and increased visibility in search results.

IncludeSelector: Details
Item.Seller.UserID string Always The unique identifier of the eBay user. An eBay user ID is unique across all eBay marketplaces.

This field is generally always returned, but it may be masked depending on the situation. For example, if anyone other than the seller of the listing runs a GetItemStatus call on an active auction listing with one or or bids, the UserID value will be masked something like this - b***r.

IncludeSelector: Details
Item.ShippingCostSummary ShippingCostSummaryType Always This container returns a few details of the lowest-priced shipping service option that is available to the eBay user making the call. For Calculated shipping, the item's location and the destination location are considered when calculating the shipping cost.

Important: To retrieve detailed information on every shipping service option available that the seller has set for the listing, the GetShippingCosts call is the better call to use, as the GetSingleItem and GetMultipleItems calls only return the ShippingCostSummary container.

IncludeSelector: ShippingCosts

See GetShippingCosts.

Item.ShippingCostSummary
  .ListedShippingServiceCost
AmountType (double) Conditionally This is the localized cost to ship the item using the cheapest available domestic or international shipping service option. If the item is located in Germany, but the shipping destination is the US, this field will show the cost in Euros (EUR) and the ShippingServiceCost will show the cost in US dollars (USD).

For GetShippingCosts call, this is the localized base shipping cost to ship the item using the shipping service option in the ShippingServiceName field. The quantity specified in the QuantitySold field in the call request is taken into account when calculating the cost.

For GetSingleItem and GetMultipleItems calls, this is the localized base shipping cost of the cheapest available shipping service option to the country specified in the Site-ID header. The name of the shipping service option is not returned for these calls.

IncludeSelector: ShippingCosts
Item.ShippingCostSummary
  .ListedShippingServiceCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally This is the localized cost to ship the item using the cheapest available domestic or international shipping service option. If the item is located in Germany, but the shipping destination is the US, this field will show the cost in Euros (EUR) and the ShippingServiceCost will show the cost in US dollars (USD).

For GetShippingCosts call, this is the localized base shipping cost to ship the item using the shipping service option in the ShippingServiceName field. The quantity specified in the QuantitySold field in the call request is taken into account when calculating the cost.

For GetSingleItem and GetMultipleItems calls, this is the localized base shipping cost of the cheapest available shipping service option to the country specified in the Site-ID header. The name of the shipping service option is not returned for these calls.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingCostSummary
  .LocalPickup
boolean Conditionally This field is only returned (as true) if 'Local Pickup' is the only available logistic option (no shipping options). With 'Local Pickup', the seller and buyer arrange the pickup location and time (off of the eBay platform).

IncludeSelector: ShippingCosts
Item.ShippingCostSummary
  .ShippingServiceCost
AmountType (double) Conditionally This field shows the base shipping cost using the lowest-priced shipping service option that is available to the eBay user making the call.

For GetShippingCosts call, this is base shipping cost to ship the item using the shipping service option in the ShippingServiceName field. The quantity specified in the QuantitySold field in the call request is taken into account when calculating the cost.

For GetSingleItem and GetMultipleItems calls, this is base shipping cost of the cheapest available domestic shipping service option. The name of the shipping service option is not returned for these calls.

IncludeSelector: ShippingCosts
Item.ShippingCostSummary
  .ShippingServiceCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field shows the base shipping cost using the lowest-priced shipping service option that is available to the eBay user making the call.

For GetShippingCosts call, this is base shipping cost to ship the item using the shipping service option in the ShippingServiceName field. The quantity specified in the QuantitySold field in the call request is taken into account when calculating the cost.

For GetSingleItem and GetMultipleItems calls, this is base shipping cost of the cheapest available domestic shipping service option. The name of the shipping service option is not returned for these calls.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingCostSummary
  .ShippingType
ShippingTypeCodeType Conditionally This enumeration value indicates the shipping cost model associated with the lowest-priced shipping service option that is available to the eBay user making the call. Examples of shipping cost models include flat-rate and calculated shipping.

For GetShippingCosts call, this is the shipping cost model associated with the shipping service option in the ShippingServiceName field. The name of the shipping service option is not returned for the GetSingleItem and GetMultipleItems calls calls.

Applicable values: See ShippingType.
Code so that your app gracefully handles any future changes to this list.

IncludeSelector: ShippingCosts
Item.ShipToLocations string Conditionally,
repeatable: [0..*]
A ShipToLocations field is returned for each domestic or international region that the seller is willing to ship the item. At least one ShipToLocations field should be returned for every listing. 'Ship-to' locations and excluded shipping locations are set by the seller through Shipping Rate Tables in My eBay, through a Shipping/Fulfillment Business Policy associated with a listing, or through the ShipToLocations and ExcludeShipToLocation fields in an Add/Revise/Relist call in the Trading API.

'Ship-to' locations range from continents and other large geographical regions, such as Africa, Asia, Caribbean, or MiddleEast, all the way down to the state/province level and even cities within those state/provinces. A user will be able to see the international and domestic shipping regions that can be set by looking at the Shipping rate tables UI in My eBay. The Trading API's GeteBayDetails can also be used to view available shipping locations.

If a US seller only ships to domestic locations, the only ShipToLocations value that should be returned is US. If a US seller is willing to ship to any location in the world, the only ShipToLocations value that should be returned is Worldwide

Countries are represented by the two-digit codes defined in the ISO 3166 standard, or these codes can also be found in the CountryCodeType definition.

IncludeSelector: Details

See CountryCodeType.

Item.Site SiteCodeType Conditionally This enumeration value indicates the eBay marketplace on which the item was originally listed. For example, if the item is listed on the eBay US site, the value would be US. If it's listed on the eBay Germany site, the value would be Germany.

Applicable values: See Site.
Code so that your app gracefully handles any future changes to this list.

IncludeSelector: Details
Item.SKU string Conditionally A SKU (stock keeping unit) value is a seller-defined identifier of a product within their inventory. Some sellers use product SKUs to track complex flows of products and information on the client side. A seller can specify a SKU value for a product (or for all variations within a multiple-variation listing) when creating a listing. eBay preserves the SKU values, and the SKU value becomes another way to identify the product/listing, and another way to track orders associated with the SKU value.

A SKU is not required to be unique across an eBay marketplace, but a seller cannot have any active listings or variations within a multiple-variation listing that have the same SKU value. The seller will be blocked from listing, revising, or relisting with a SKU value that is already associated with an active listing.

The SKU field, if defined for a single-variation listing, will be returned if the IncludeSelector field is set to Details. For multi-variation listings, the SKU value for each variation (if defined) will actually be returned in the Variation.SKU field, and to return variations data, the user must include the IncludeSelector field and set it to Variations.
Max length: 50.

IncludeSelector: Details
Item.StartTime dateTime Conditionally This timestamp indicates the date and time when the listing started.

IncludeSelector: Details
Item.Storefront StorefrontType Conditionally This container consists of the eBay seller's store name and the URL to the eBay store. This container is returned if the seller has an eBay Store subscription and the IncludeSelector field is included in the call request and set to Details.

IncludeSelector: Details
Item.Storefront.StoreName string Always The name of the seller's eBay Store. This field is always returned with the Storefront container.
Max length: 200.

IncludeSelector: Details
Item.Storefront.StoreURL anyURI Always The URL of the seller's eBay Store. This field is always returned with the Storefront container.

IncludeSelector: Details
Item.Subtitle string Conditionally The subtitle of the listing. This field is only returned if the seller included a subtitle for the listing and the IncludeSelector is included in the call request and set to Details.
Max length: 55.

IncludeSelector: Details
Item.TimeLeft duration Always The value in this field indicates the precise time left before the listing is scheduled to end. The format used in this field is the format defined in the ISO 8601 duration format standard. See the duration simple type definition for more information on syntax/notation used for this type.

This field is always returned, even if the listing is in the Completed state. A completed/ended listing will essentially have 0 seconds left, so the Completed value will be PT0S, which indicates '0 seconds' left.

IncludeSelector: none (not controlled by IncludeSelector)
Item.Title string Always The listing title, as it appears in search results or on the View Item page.

Max length: 80.

IncludeSelector: none (not controlled by IncludeSelector)
Item.TopRatedListing boolean Conditionally This boolean field is returned as true if the listing was created by a Top-Rated Seller and the listing has all of the requirements that qualifies it as a Top-Rated Plus listing. The Top-Rated Seller program is only available on the US, UK, and Germany sites. See the Top-Rated Seller requirements help topic for more information on qualifying as a Top-Rated Seller and the Top-Rated Plus listing requirements help topic for more information on what a listing must offer to qualify as a Top-Rated Plus listing and get the Top-Rated Plus badge. Information on the overall program can be found on the Top-Rated Seller home page in the Seller Center.

This field is not returned if false.

IncludeSelector: Details
Item.UnitInfo UnitInfoType Conditionally Contains information about the weight, volume or other quantity measurement of a listed item so buyers can compare per-unit prices. The European Union requires listings for certain types of products to include the price per unit. eBay uses this information and the item's listed price to calculate and display the unit price on eBay EU sites.

Note: This information is currently required only for business sellers, and only for listings with a 'Buy It Now' option.

IncludeSelector: none (not controlled by IncludeSelector)
Item.UnitInfo.UnitQuantity double Conditionally Number of units of size, weight, volume or count of the specified unit type for the item. eBay divides the item price by this number to get the price per unit to be displayed in the item listing for comparison purposes.

This field is returned only when you provide IncludeSelector in the request and set it to ItemSpecifics.
Item.UnitInfo.UnitType string Conditionally Designation of size, weight, volume or count to be used to specify the unit quantity of the item. This value can be one of the following:
 Kg 100g 10g L 100ml 10ml M M2 M3 Unit 
This field is returned only when you provide IncludeSelector in the request and set it to ItemSpecifics.
Item.Variations VariationsType Conditionally This container is only returned for multiple-variation listings, and it is required that the user include the IncludeSelector field in the call request, and set its value to Variations. Multiple-variation listings are fixed-price listings that feature similar, but not identicial items. For example, a T-shirt listing could contain multiple items of the same brand and style that vary by color and size (like Blue, Large and Black, Medium). Each variation in the listing specifies a unique combination of one of the available colors and sizes. Each variation can have a different quantity and price.

IncludeSelector: Variations
Item.Variations.Pictures PicturesType Conditionally Contains a set of pictures that correspond to one of the variation specifics, such as 'Color'. For example, if a listing has blue and black color variations, a listing could specify the name 'Color' as an organizing mechanism for all the pictures, and then include a set of pictures for the blue variations and another set of pictures for the black variations.

Note: Only one Pictures node is currently returned for a listing. However, the node has been defined as unbounded (repeatable) in the schema to allow for different use cases for some calls or sites in the future.

IncludeSelector: Variations
Item.Variations.Pictures
  .VariationSpecificName
string Conditionally This field defines the product aspect in which pictures in the listing will vary based on the individual variations. For example, if the product aspect in this field is Color, the picture URLs in each VariationSpecificPictureSet container would point to one or more pictures of the corresponding variation (defined in the VariationSpecificValue field).

IncludeSelector: Variations
Item.Variations.Pictures
  .VariationSpecificPictureSet
VariationSpecificPictureSetType Conditionally,
repeatable: [0..*]
A VariationSpecificPictureSet container is returned for each product variation for which there are one or more pictures available, helping buyers distinguish between the different variations in the listing. Pictures for multiple or all available variations can be included for a multiple-variation listing, but note that this is not a requirement for the seller. In other words, one multiple-variation listing might contain 10 different variations (varying by color), but the seller could choose to only include one or more pictures just for one particular color. However, the seller can make that listing more buyer-friendly if he/she provides pictures of all or most available colors.

IncludeSelector: Variations
Item.Variations.Pictures
  .VariationSpecificPictureSet
  .PictureURL
anyURI Conditionally,
repeatable: [0..*]
The URL to one image of one variation of the multiple-variation listing. The image must be associated with the corresponding aspect name-value pair. So, if the corresponding VariationSpecificName value is 'Color', and the corresponding VariationSpecificValue value is 'Space Grey', each URL returned under the corresponding VariationSpecificPictureSet container should point to a picture that display the item in that particular color.

The URL(s) can point to an image (or images) stored on the eBay Picture Server, or it can be a URL to a self-hosted picture. Note that self-hosted pictures must be on a server that supports the 'https' protocol.

The first PictureURL shown in the response is the URL that is used as the 'Gallery URL' for that particular product variation.

IncludeSelector: Variations
Item.Variations.Pictures
  .VariationSpecificPictureSet
  .VariationSpecificValue
string Conditionally This field shows the corresponding value of the product aspect that is shown in the the Variations.Pictures.VariationSpecificName field. For example, if the Variations.Pictures.VariationSpecificName value is 'Color', the value in this field will be one of the values that is shown in the Variations.VariationSpecificsSet.NameValueList container. So, if the Name field of that NameValueList container was 'Color', the value in the VariationSpecificPictureSet.VariationSpecificValue would have to be one of the defined colors for the multiple-variation listing.

IncludeSelector: Variations
Item.Variations.Variation VariationType Conditionally,
repeatable: [0..*]
Contains data that distinguishes one variation from another. For example, if the items vary by color and size, each Variation node specifies a combination of one of those colors and sizes. The quantity and price for each variation is also shown in the Variation container

IncludeSelector: Variations
Item.Variations.Variation
  .DiscountPriceInfo
DiscountPriceInfoType Conditionally This container provides information for a single variation (within a multiple-variation listing) that has a Strikethrough Price (STP) or a Minimum Advertised Price (MAP) discount pricing treatment. STP and MAP apply only to fixed-price listings. STP is available on the US, eBay Motors, UK, Germany, Canada (English and French), France, Italy, and Spain sites, while MAP is available only on the US site.

Discount pricing is available to qualified sellers (and their associated developers) who participate in the Discount Pricing Program. Once qualified, sellers receive a 'special account flag' (SAF) that allows them to apply Discount Pricing to both single-variation and multi-variation items. STP is intended for eBay partners and their sellers only.

As a seller listing Discount Price items, you are required to maintain records of your discount pricing in the event you are called upon to substantiate your item pricing.

See Displaying Discount Pricing Information to Buyers.

Item.Variations.Variation
  .DiscountPriceInfo
  .MinimumAdvertisedPrice
AmountType (double) Conditionally A value equal to the agreed upon minimum advertised price.

The minimum advertised price is an agreed upon price that is set by the suppliers/OEMs and the retailers/sellers. The minimum advertised price is the lowest price for which an item can be advertised. Large volume sellers can negotiate with the suppliers/OEMs to offer certain items below the set minimum advertised price. eBay does not maintain or validate the agreed upon minimum advertised price; the seller is responsible for setting this value in accordance with their agreement with the supplier/OEMs. MAP pricing treatments apply to only fixed-price, listings on the eBay US site.
Item.Variations.Variation
  .DiscountPriceInfo
  .MinimumAdvertisedPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally A value equal to the agreed upon minimum advertised price.

The minimum advertised price is an agreed upon price that is set by the suppliers/OEMs and the retailers/sellers. The minimum advertised price is the lowest price for which an item can be advertised. Large volume sellers can negotiate with the suppliers/OEMs to offer certain items below the set minimum advertised price. eBay does not maintain or validate the agreed upon minimum advertised price; the seller is responsible for setting this value in accordance with their agreement with the supplier/OEMs. MAP pricing treatments apply to only fixed-price, listings on the eBay US site.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .DiscountPriceInfo
  .MinimumAdvertisedPriceExposure
MinimumAdvertisedPriceExposureCodeType Conditionally This field is only returned for US-based listings eligible for, and using the MAP feature. The enumeration value returned in this field indicates how/when the Minimum Advertised Price will be displayed to the buyer. See the descriptions for each enumeration value for more information.

Applicable values:

CustomCode
(out) Reserved for future use.
DuringCheckout
(out) This enumeration value indicates that the discounted price will only be shown to the buyer once the buyer reaches the eBay Checkout page.
None
(out) This enumeration value indicates that the discounted price is shown on the View Item page, and the buyer is not required to add the item to his/her cart or click Buy button to view the discounted price.
PreCheckout
(out) This enumeration value indicates that the buyer must add the item to his/her cart before the discounted price can be displayed.

Code so that your app gracefully handles any future changes to this list.
Item.Variations.Variation
  .DiscountPriceInfo
  .OriginalRetailPrice
AmountType (double) Conditionally This field specifies the price to which the discounted-price display treatment will be applied (for example, a strikethrough price). The discounted price of an item is shown in the CurrentPrice field, and is always less than the value in this field.

See Displaying Discount Pricing Information to Buyers for guidelines on displaying STP and MAP items.

Item.Variations.Variation
  .DiscountPriceInfo
  .OriginalRetailPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field specifies the price to which the discounted-price display treatment will be applied (for example, a strikethrough price). The discounted price of an item is shown in the CurrentPrice field, and is always less than the value in this field.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .DiscountPriceInfo
  .PricingTreatment
PricingTreatmentCodeType Conditionally This field denotes whether or not an item qualifies for a discount pricing treatment display, such as STP or MAP. If this field is set to MAP, you must abide by the rules for displaying MAP items, as described in the MinimumAdvertisedPriceExposure field.

Important: For listings that return PricingTreatment set to MAP, you are legally required to follow the rules for displaying the price of the item to potential buyers. You are bound by the terms of the API License Agreement to follow these rules. Refer to the API License Agreement for consequences of non-compliance.

Applicable values:

CustomCode
(out) Reserved for future use.
MAP
(out) This enumeration value indicates that Minimum Advertised Pricing is enabled for the order line item. If this value is returned, the minimum advertised price is found in the MinimumAdvertisedPrice field.
None
(out) This enumeration value indicates that neither Strikethrough Pricing or Minimum Advertised Pricing is enabled for the order line item.
STP
(out) This enumeration value indicates that Strikethrough Pricing is enabled for the order line item. If this value is returned, the price in the OriginalRetailPrice field will be crossed out in the View Item page.

Code so that your app gracefully handles any future changes to this list.
Item.Variations.Variation
  .DiscountPriceInfo.SoldOffeBay
boolean Conditionally Used by the eBay UK and eBay Germany (DE) sites, this field indicates that the discount price (shown in CurrentPrice field) is the price for which the seller offered the same item for sale on a web site or offline store other than eBay in the previous 30 days. The discount price is always in reference to the seller's own price for the item.

In the event both SoldOffeBay and SoldOneBay fields are set, SoldOneBay takes precedence.
Item.Variations.Variation
  .DiscountPriceInfo.SoldOneBay
boolean Conditionally Used by the eBay UK and eBay Germany (DE) sites, this field indicates that the discount price (shown in CurrentPrice field) is the price for which the seller offered the same (or similar) item for sale on eBay within the previous 30 days. The discount price is always in reference to the seller's own price for the item.

In the event both SoldOffeBay and SoldOneBay fields are set, SoldOneBay takes precedence.
Item.Variations.Variation
  .ProductID
ProductIDType (string) Conditionally This field is the unique identifier of the product variation. This identfier can either be an eBay Product ID (also known as an ePID), or a Global Trade Item Number (GTIN) such as UPC, EAN, or ISBN. This field is only returned if the seller has supplied an ePID or GTIN value for the each variation within a multiple-variation listing.

The type attribute's value indicates the type of product identifier.

IncludeSelector: Variations
Item.Variations.Variation
  .Quantity
int Conditionally This field shows the total quantity associated with the variation, including the quantity available and the quantity sold. To calculate the quantity available for sale, subtract the corresponding Variation.SellingStatus.QuantitySold value from this value.

Generally, this integer value will be '1' or greater, but it is possible that the value will be '0' if the variation is currently out of stock, but the seller is using the 'Out-of-Stock Control' feature. When the seller uses the 'Out-of-Stock Control' feature, an item (or item variation) will still surface in search results, although that particular item (or item variation) will not be purchasable.

IncludeSelector: Variations
Item.Variations.Variation
  .SellingStatus
SellingStatusType Conditionally This container shows the quantity sold for the variation, including the quantity that is sold through 'In-Store Pickup' (a logistics option that is only available to a select number of large US sellers with 'brick and mortar' stores). The SellingStatus container is returned for each item variation, even if the quantity sold value is '0'.

IncludeSelector: Variations
Item.Variations.Variation
  .SellingStatus.QuantitySold
int Conditionally This integer value indicates the quantity sold for the corresponding variation. You can subtract this integer value from the value in the Variation.Quantity field to determine the quantity of the variation that is still available for purchase.

IncludeSelector: Variations
Item.Variations.Variation
  .SellingStatus
  .QuantitySoldByPickupInStore
int Conditionally This field indicates the total quantity of the corresponding variation sold and picked up by buyers using the In-Store Pickup or Click and Collect option. This value is the total quantity of this variation purchased by one or more buyers using the In-Store Pickup or Click and Collect option, and is not the total number of In-Store Pickup or Click and Collect orders for that variation. So, if two buyers selected the In-Store Pickup or Click and Collect option, but each of these buyers bought a quantity of five of these variations (in same purchase), the Item.Variations.Variation.SellingStatus.QuantitySoldByPickupInStore value would be 10 and not 2.

This field will only be returned if the listing is eligible for In-Store Pickup or Click and Collect.

Note: The In-Store Pickup feature is generally only available to large retail merchants in US, Canada, UK, Germany, and Australia marketplaces, and the In-Store Pickup feature is generally only available to large retail merchants in UK, Australia, and Germany marketplaces. Both of these features can only be applied to multiple-quantity, fixed-price listings.

IncludeSelector: Variations
Item.Variations.Variation.SKU string Conditionally A SKU (stock keeping unit) is a seller-defined identifier. It is only intended for the seller's use (not necessarily for buyers). A SKU value is not required, but many large sellers like to add SKU values for their products. If SKU values are defined for variations in a multiple-variation listing, the seller can specify a variation's SKU value in the VariationSKU field of a GetSingleItem call to retrieve details on that particular variation. The VariationSKU field is not available in the GetMultipleItems call.

If specified, all SKU values must be unique within the Variations node. That is, no two variations within the same listing can have the same SKU.

This field is only returned if the seller specified a SKU for the variation.
Max length: 80.

IncludeSelector: Variations
Item.Variations.Variation
  .StartPrice
AmountType (double) Conditionally The fixed price for this item variation. For example, a "Blue, Large" variation price could be USD 10.00, and a "Black, Medium" variation price could be USD 8.00.

The StartPrice is mandatory for each variation, regardless of whether the price is the same for all variations, or if the price differs for different variations. This field will be returned for each Variation container.

IncludeSelector: Variations
Item.Variations.Variation
  .StartPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally The fixed price for this item variation. For example, a "Blue, Large" variation price could be USD 10.00, and a "Black, Medium" variation price could be USD 8.00.

The StartPrice is mandatory for each variation, regardless of whether the price is the same for all variations, or if the price differs for different variations. This field will be returned for each Variation container.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .VariationSpecifics
NameValueListArrayType Conditionally,
repeatable: [2..5]
A list of name/value pairs that uniquely identify the variation within the listing. All variations specify the same set of names, and each variation provides a unique combination of values for those names. For example, if the items vary by color and size, then every variation specifies Color and Size as names, and no two variations can specify the same combination of color and size values. Use this information to identify a variation of interest when you communicate with the seller.

If your application supports PlaceOffer (in the Trading API), you use this information to uniquely identify the variation that you want to purchase.

IncludeSelector: Variations
Item.Variations.Variation
  .VariationSpecifics
  .NameValueList
NameValueListType Conditionally,
repeatable: [0..*]
This list is an array of Item Specifics name-value pairs for an eBay Catalog product (if FindProducts is used) or Item Specifics name-value pairs for a single-variation listing or individual variation within a multiple-variation listing (if GetSingleItem or GetMultipleItems is used).

For example, Item Specifics for a motor vehicle might include a field like Make=Toyota (where Make is returned in Name field, and Toyota is returned in Value field) and Model=Prius (where Model is returned in Name field, and Prius is returned in Value field).

In multiple-variation listings, the same name cannot appear in both the ItemSpecifics node and Variation.VariationSpecifics nodes. Common aspects for all variations within the multiple-variation listings will appear in the ItemSpecifics node, and aspects unique to individual variations within the multiple-variation listings will appear in the Variation.VariationSpecifics nodes.

For GetSingleItem, the user can use the NameValueList container in the call input to identify one or more variations to retrieve from a specific multiple-variation listing.

IncludeSelector: Variations
Item.Variations.Variation
  .VariationSpecifics
  .NameValueList.Name
string Conditionally The name of the Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, and individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

Note: To control the data that is returned in a GetSingleItem or GetMultipleItems response, the IncludeSelector filter should be included. To see listing-level Item Specifics, include the IncludeSelector field and set its value to ItemSpecifics. To see variation-level Item Specifics (only applicable for multiple-variation listings), include the IncludeSelector field and set its value to Variations. To see Parts Compatibility name/value pairs (only applicable for motor vehicle part or accessory listings with a compatible vehicle list), include the IncludeSelector field and set its value to Compatibility.

IncludeSelector: Variations
Item.Variations.Variation
  .VariationSpecifics
  .NameValueList.Value
string Conditionally,
repeatable: [0..*]
The corresponding value of an Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, an individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

IncludeSelector: Variations
Item.Variations
  .VariationSpecificsSet
NameValueListArrayType Conditionally A list of all variation names and values that are defined on the item. This could include values that were previously defined (but no longer for sale).

eBay uses this list to configure variation selection widgets that appear on eBay's View Item page. For example, if 'Color' and 'Size' are names in the list, then eBay's View Item page displays Color and Size drop-down lists to help a buyer choose a variation of interest.

The order in which the names and values are returned matches the order in which the selection widgets appear on the View Item page. For example, if the names "Color", then "Size", and then "Sleeve Style" are returned, the View Item page shows drop-down lists with those labels in that order. For "Size", if the values returned are "S", "M", and then "L", the View Item page shows the values in that order in the Size drop-down list.

IncludeSelector: Variations
Item.Variations
  .VariationSpecificsSet
  .NameValueList
NameValueListType Conditionally,
repeatable: [0..*]
This list is an array of Item Specifics name-value pairs for an eBay Catalog product (if FindProducts is used) or Item Specifics name-value pairs for a single-variation listing or individual variation within a multiple-variation listing (if GetSingleItem or GetMultipleItems is used).

For example, Item Specifics for a motor vehicle might include a field like Make=Toyota (where Make is returned in Name field, and Toyota is returned in Value field) and Model=Prius (where Model is returned in Name field, and Prius is returned in Value field).

In multiple-variation listings, the same name cannot appear in both the ItemSpecifics node and Variation.VariationSpecifics nodes. Common aspects for all variations within the multiple-variation listings will appear in the ItemSpecifics node, and aspects unique to individual variations within the multiple-variation listings will appear in the Variation.VariationSpecifics nodes.

For GetSingleItem, the user can use the NameValueList container in the call input to identify one or more variations to retrieve from a specific multiple-variation listing.

IncludeSelector: Variations
Item.Variations
  .VariationSpecificsSet
  .NameValueList.Name
string Conditionally The name of the Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, and individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

Note: To control the data that is returned in a GetSingleItem or GetMultipleItems response, the IncludeSelector filter should be included. To see listing-level Item Specifics, include the IncludeSelector field and set its value to ItemSpecifics. To see variation-level Item Specifics (only applicable for multiple-variation listings), include the IncludeSelector field and set its value to Variations. To see Parts Compatibility name/value pairs (only applicable for motor vehicle part or accessory listings with a compatible vehicle list), include the IncludeSelector field and set its value to Compatibility.

IncludeSelector: Variations
Item.Variations
  .VariationSpecificsSet
  .NameValueList.Value
string Conditionally,
repeatable: [0..*]
The corresponding value of an Item Specific for either an eBay Catalog Product (FindProducts call only), a single-variation listing, an individual variation within a multiple-variation listing, or a Parts Compatibility aspect for a motor vehicle part or accessory listing.

IncludeSelector: Variations
Item.VhrAvailable boolean Conditionally This field is returned as true if a Vehicle History Report is available for a motor vehicle listing. This field is only applicable to motor vehicle listings with a Vehicle History Report avaialable. The URL to the Vehicle History Report can be found in the VhrUrl field.

IncludeSelector: none (not controlled by IncludeSelector)
Item.VhrUrl anyURI Conditionally This field is returned with the URL to the Vehicle History Report if the seller has made one available for a motor vehicle listing. This field is only applicable to motor vehicle listings with a Vehicle History Report avaialable.

IncludeSelector: none (not controlled by IncludeSelector)
Item
  .ViewItemURLForNaturalSearch
anyURI Always This field shows the URL to the listing's View Item page on the eBay marketplace.

IncludeSelector: none (not controlled by IncludeSelector)
Standard Output Fields  
Ack AckCodeType Always A token representing the application-level acknowledgement code that indicates the response status (e.g., success). The AckCodeType list specifies the possible values for the Ack field.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
Failure
(out) This value indicates that the call request processing failed.
Success
(out) This value indicates that the call request was processed successfully without any issues.
Warning
(out) This value indicates that the call request was successful, but processing was not without any issues. These issues can be checked in the Errors container, that will also be returned when one or more known issues occur with the call request.

(Not all values in AckCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.
Build string Always This refers to the particular software build that eBay used when processing the request and generating the response. This includes the version number plus additional information. eBay Developer Support may request the build information when helping you resolve technical issues.
CorrelationID string Conditionally If you pass a value in MessageID in a request, we will return the same value in CorrelationID in the response. You can use this for tracking that a response is returned for every request and to match particular responses to particular requests. Only returned if MessageID was used.
Errors ErrorType Conditionally,
repeatable: [0..*]
A list of application-level errors or warnings (if any) that were raised when eBay processed the request.

Application-level errors occur due to problems with business-level data on the client side or on the eBay server side. For example, an error would occur if the request contains an invalid combination of fields, or it is missing a required field, or the value of the field is not recognized. An error could also occur if eBay encountered a problem in our internal business logic while processing the request.

Only returned if there were warnings or errors.
Errors.ErrorClassification ErrorClassificationCodeType Conditionally API errors are divided between two classes: system errors and request errors.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
RequestError
(out) An error has occurred either as a result of a problem in the sending application or because the application's end-user has attempted to submit invalid data (or missing data). In these cases, do not retry the request. The problem must be corrected before the request can be made again. If the problem is due to something in the application (such as a missing required field), the application must be changed. If the problem is a result of end-user data, the application must alert the end-user to the problem and provide the means for the end-user to correct the data. Once the problem in the application or data is resolved, resend the request to eBay with the corrected data.
SystemError
(out) Indicates that an error has occurred on the eBay system side, such as a database or server down. An application can retry the request as-is a reasonable number of times (eBay recommends twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, the request may be resent in its original form.

Code so that your app gracefully handles any future changes to this list.

See Errors by Number.

Errors.ErrorCode token Conditionally A unique code that identifies the particular error condition that occurred. Your application can use error codes as identifiers in your customized error-handling algorithms.

See Errors by Number.

Errors.ErrorParameters ErrorParameterType Conditionally,
repeatable: [0..*]
Some warning and error messages return one or more variables that contain contextual information about the error. This is often the field or value that triggered the error. You can usually predict where these will occur by looking at the "replaceable_value" indicators in our Errors by Number page.

See Errors by Number.

Errors.ErrorParameters
  [ attribute ParamID ]
string Conditionally Some warning and error messages return one or more variables that contain contextual information about the error. This is often the field or value that triggered the error. You can usually predict where these will occur by looking at the "replaceable_value" indicators in our Errors by Number page.
Errors.ErrorParameters.Value string Conditionally This is the value of the request parameter noted in the ParamID attribute. So, if the ParamID value was ItemID, the value in this field would be the actual value of that ItemID.
Errors.LongMessage string Conditionally A more detailed description of the condition that raised the error.

See Errors by Number.

Errors.SeverityCode SeverityCodeType Conditionally Indicates whether the error caused the request to fail.

If the request fails and the source of the problem is within the application (such as a missing required element), please change the application before you retry the request. If the problem is due to end-user input data, please alert the end-user to the problem and provide the means for them to correct the data. Once the problem in the application or data is resolved, you can attempt to re-send the request to eBay.

If the source of the problem is on eBay's side, you can retry the request as-is a reasonable number of times (eBay recommends twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, the request may be resent in its original form.

When a warning occurs, the error is returned in addition to the business data. In this case, you do not need to retry the request (as the original request was successful). However, depending on the cause or nature of the warning, you might need to contact either the end user or eBay to effect a long term solution to the problem to prevent it from reoccurring in the future.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
Error
(out) The request that triggered the error was not processed successfully. When a serious application-level error occurs, the error is returned instead of the business data.
Warning
(out) The request was processed successfully, but something occurred that may affect your application or the user. For example, eBay may have changed a value the user sent in. In this case, eBay returns a normal, successful response and also returns the warning.

Code so that your app gracefully handles any future changes to this list.

See:
    Errors by Number
    Error Handling

Errors.ShortMessage string Conditionally A brief description of the condition that raised the error.

See Errors by Number.

Timestamp dateTime Always This value represents the date and time when eBay processed the request. The time zone of this value is GMT and the format is the ISO 8601 date and time format (YYYY-MM-DDTHH:MM:SS.SSSZ). See the "dateTime" type for information about this time format and converting to and from the GMT time zone.
Version string Always The version of the API call that eBay used to process the request.

Note: Note that some calls are not always updated with each WSDL release, so it is possible that version numbers will differ by API call.
If a field in the response returns the token "CustomCode", it usually means that the field is a code type (a token or enumeration), and that in your request URL (or HTTP header) you specified a version that is older than the version in which the token was added to the call.

See Schema Versioning Strategy.



Detail Controls


IncludeSelector

The IncludeSelector input field gives you control over which call-specific output fields may be returned from your queries. IncludeSelector accepts a set of preset values, each of which permits the return of a different set of fields. (All standard output fields are returned regardless of IncludeSelector.)

The table below details the fields that each IncludeSelector value controls. In addition, the table includes a none column that shows the fields that are not controlled by IncludeSelector settings. Note that some fields are returned only when certain conditions are met; see the associated field documentation for a clarification of these conditions.

YThe field is always returned.
(Y)The field is conditionally returned. See the field documentation for clarification of conditions.

Output Field none Compatibility Description Details ItemSpecifics ShippingCosts TextDescription Variations
ItemY-------
Item.AutoPayY-------
Item.AvailableForPickupDropOff---(Y)----
Item.BestOfferEnabled---(Y)----
Item.BidCountY-------
Item.BusinessSellerDetails---(Y)----
Item.BusinessSellerDetails.AdditionalContactInformation---(Y)----
Item.BusinessSellerDetails.Address---(Y)----
Item.BusinessSellerDetails.Address.CityName---(Y)----
Item.BusinessSellerDetails.Address.CompanyName---(Y)----
Item.BusinessSellerDetails.Address.CountryName---(Y)----
Item.BusinessSellerDetails.Address.FirstName---(Y)----
Item.BusinessSellerDetails.Address.LastName---(Y)----
Item.BusinessSellerDetails.Address.Name---(Y)----
Item.BusinessSellerDetails.Address.Phone---(Y)----
Item.BusinessSellerDetails.Address.PostalCode---(Y)----
Item.BusinessSellerDetails.Address.StateOrProvince---(Y)----
Item.BusinessSellerDetails.Address.Street1---(Y)----
Item.BusinessSellerDetails.Address.Street2---(Y)----
Item.BusinessSellerDetails.Email---(Y)----
Item.BusinessSellerDetails.Fax---(Y)----
Item.BusinessSellerDetails.LegalInvoice---(Y)----
Item.BusinessSellerDetails.TermsAndConditions---(Y)----
Item.BusinessSellerDetails.TradeRegistrationNumber---(Y)----
Item.BusinessSellerDetails.VATDetails---(Y)----
Item.BusinessSellerDetails.VATDetails.BusinessSeller---(Y)----
Item.BusinessSellerDetails.VATDetails.RestrictedToBusiness---(Y)----
Item.BusinessSellerDetails.VATDetails.VATID---(Y)----
Item.BusinessSellerDetails.VATDetails.VATPercent---(Y)----
Item.BusinessSellerDetails.VATDetails.VATSite---(Y)----
Item.BuyItNowAvailable(Y)-------
Item.BuyItNowPrice---(Y)----
Item.Charity---(Y)----
Item.Charity.CharityID---(Y)----
Item.Charity.CharityName---(Y)----
Item.Charity.DonationPercent---(Y)----
Item.Charity.LogoURL---(Y)----
Item.Charity.Mission---(Y)----
Item.Charity.Status---(Y)----
Item.ConditionDescription(Y)-------
Item.ConditionDisplayName(Y)-------
Item.ConditionID(Y)-------
Item.ConvertedBuyItNowPrice(Y)-------
Item.ConvertedCurrentPriceY-------
Item.CountryY-------
Item.CurrentPrice---(Y)----
Item.Description--(Y)---(Y)-
Item.DiscountPriceInfo---(Y)----
Item.EligibleForPickupDropOff---(Y)----
Item.EndTimeY-------
Item.GalleryURL(Y)-------
Item.GlobalShipping---(Y)----
Item.HandlingTime---(Y)----
Item.HighBidder---(Y)----
Item.HighBidder.FeedbackPrivate---(Y)----
Item.HighBidder.FeedbackRatingStar---(Y)----
Item.HighBidder.FeedbackScore---(Y)----
Item.HighBidder.UserAnonymized---(Y)----
Item.HighBidder.UserID---(Y)----
Item.HitCount---(Y)----
Item.IgnoreQuantity---(Y)----
Item.IntegratedMerchantCreditCardEnabled---(Y)----
Item.ItemCompatibilityCount-(Y)------
Item.ItemCompatibilityList-(Y)------
Item.ItemCompatibilityList.Compatibility-(Y)------
Item.ItemCompatibilityList.Compatibility.CompatibilityNotes-(Y)------
Item.ItemCompatibilityList.Compatibility.NameValueList-(Y)------
Item.ItemCompatibilityList.Compatibility.NameValueList.Name-(Y)------
Item.ItemCompatibilityList.Compatibility.NameValueList.Value-(Y)------
Item.ItemIDY-------
Item.ItemSpecifics----(Y)---
Item.ItemSpecifics.NameValueList----(Y)---
Item.ItemSpecifics.NameValueList.Name----(Y)---
Item.ItemSpecifics.NameValueList.Value----(Y)---
Item.ListingStatusY-------
Item.ListingTypeY-------
Item.LocationY-------
Item.LotSize---(Y)----
Item.MinimumToBid---(Y)----
Item.PaymentAllowedSite---Y----
Item.PaymentMethods---(Y)----
Item.PictureURLY-------
Item.PostalCode---(Y)----
Item.PrimaryCategoryIDY-------
Item.PrimaryCategoryIDPath---(Y)----
Item.PrimaryCategoryNameY-------
Item.ProductID---(Y)----
Item.Quantity---(Y)----
Item.QuantityAvailableHint---(Y)----
Item.QuantityInfo(Y)-------
Item.QuantitySold---(Y)----
Item.QuantitySoldByPickupInStore---(Y)----
Item.QuantityThreshold---(Y)----
Item.ReserveMet---(Y)----
Item.ReturnPolicy---(Y)----
Item.ReturnPolicy.Description---(Y)----
Item.ReturnPolicy.InternationalRefund---(Y)----
Item.ReturnPolicy.InternationalReturnsAccepted---(Y)----
Item.ReturnPolicy.InternationalReturnsWithin---(Y)----
Item.ReturnPolicy.InternationalShippingCostPaidBy---(Y)----
Item.ReturnPolicy.Refund---(Y)----
Item.ReturnPolicy.ReturnsAccepted---(Y)----
Item.ReturnPolicy.ReturnsWithin---(Y)----
Item.ReturnPolicy.ShippingCostPaidBy---(Y)----
Item.SecondaryCategoryID---(Y)----
Item.SecondaryCategoryIDPath---(Y)----
Item.SecondaryCategoryName---(Y)----
Item.Seller---(Y)----
Item.Seller.FeedbackRatingStar---Y----
Item.Seller.FeedbackScore---Y----
Item.Seller.PositiveFeedbackPercent---Y----
Item.Seller.TopRatedSeller---(Y)----
Item.Seller.UserID---Y----
Item.ShippingCostSummary-----Y--
Item.ShippingCostSummary.ListedShippingServiceCost-----(Y)--
Item.ShippingCostSummary.LocalPickup-----(Y)--
Item.ShippingCostSummary.ShippingServiceCost-----(Y)--
Item.ShippingCostSummary.ShippingType-----(Y)--
Item.ShipToLocations---(Y)----
Item.Site---(Y)----
Item.SKU---(Y)----
Item.StartTime---(Y)----
Item.Storefront---(Y)----
Item.Storefront.StoreName---Y----
Item.Storefront.StoreURL---Y----
Item.Subtitle---(Y)----
Item.TimeLeftY-------
Item.TitleY-------
Item.TopRatedListing---(Y)----
Item.UnitInfo(Y)-------
Item.Variations-------(Y)
Item.Variations.Pictures-------(Y)
Item.Variations.Pictures.VariationSpecificName-------(Y)
Item.Variations.Pictures.VariationSpecificPictureSet-------(Y)
Item.Variations.Pictures.VariationSpecificPictureSet.PictureURL-------(Y)
Item.Variations.Pictures.VariationSpecificPictureSet
  .VariationSpecificValue
-------(Y)
Item.Variations.Variation-------(Y)
Item.Variations.Variation.ProductID-------(Y)
Item.Variations.Variation.Quantity-------(Y)
Item.Variations.Variation.SellingStatus-------(Y)
Item.Variations.Variation.SellingStatus.QuantitySold-------(Y)
Item.Variations.Variation.SellingStatus
  .QuantitySoldByPickupInStore
-------(Y)
Item.Variations.Variation.SKU-------(Y)
Item.Variations.Variation.StartPrice-------(Y)
Item.Variations.Variation.VariationSpecifics-------(Y)
Item.Variations.Variation.VariationSpecifics.NameValueList-------(Y)
Item.Variations.Variation.VariationSpecifics.NameValueList.Name-------(Y)
Item.Variations.Variation.VariationSpecifics.NameValueList.Value-------(Y)
Item.Variations.VariationSpecificsSet-------(Y)
Item.Variations.VariationSpecificsSet.NameValueList-------(Y)
Item.Variations.VariationSpecificsSet.NameValueList.Name-------(Y)
Item.Variations.VariationSpecificsSet.NameValueList.Value-------(Y)
Item.VhrAvailable(Y)-------
Item.VhrUrl(Y)-------
Item.ViewItemURLForNaturalSearchY-------


DetailLevel

This call does not support varying Detail Levels. You do not need to pass DetailLevel in the request.



Samples

Note: Some item IDs, user IDs, or other data in these samples might no longer be active on eBay. If necessary, you can substitute current eBay data in your requests.

Available samples:

Sample: Basic Call

Retrieves the default, most commonly used, set of item fields.

Input

If you want to show potential buyers basic information pertaining to a listing (such as the title, a picture, Buy It Now price/highest bid, and the listing ending time), pass an itemID as input to GetSingleItem.

URL format. See also the non-wrapped version of this URL. For results in a format other than XML, 
specify a different value for responseencoding.
https://open.api.ebay.com/shopping?
   callname=GetSingleItem&
   responseencoding=XML&
   siteid=0&
   version=967&
   ItemID=1**********1

   Here is the same input in XML format. Note that this does not include standard values.

XML format. Also available is the SOAP equivalent.

<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <ItemID>1**********1</ItemID>
</GetSingleItemRequest>

Output

When you pass just an itemID to GetSingleItem, eBay returns the default set of item fields: the listing's title, prices (in the currency of the site to which you sent the request), category, end time, and a few other fields (depending on what the seller specifeid in the listing). See Detail Control: IncludeSelector for a list of the default set of fields that eBay returns for an item listing. Retrieving only these basic fields gives you the fastest response time.

Notice that the value of BidCount is 1 in this example. This indicates that it is an auction listing and that the Buy It Now option is no longer available (even though the response shows ConvertedBuyItNowPrice). If knowing the availability of Buy It Now is important to your use case, you would need to get additional details about the item to determine the listing type. See Sample: Converting Prices from a Non-Local Listing for a sample that shows ListingType.

If you think the user might want to see the item again, you should cache the results instead of making the call again later. This will help reduce the number of calls you make per day. Also, if you expect to monitor the item (for example, to get the latest bid count and price) don't call GetSingleItem again to get the updates. Use instead GetItemStatus, it's a more efficient call.

XML format. Also available is the SOAP equivalent.

<?xml version="1.0" encoding="UTF-8"?>
  <GetSingleItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
   <Timestamp>2016-06-07T15:55:58.261Z</Timestamp>
   <Ack>Success</Ack>
   <Build>e967_core_APILW_4756831_R1</Build>
   <Version>967</Version>
   <Item>
    <ItemID>1**********1</ItemID>
    <ConvertedBuyItNowPrice currencyID="USD">12.88</ConvertedBuyItNowPrice>
    <EndTime>2016-06-12T18:51:06.000Z</EndTime>
    <ViewItemURLForNaturalSearch>http://cgi.ebay.com/EMMA-WATSON-entertainment-weekly-HARRY-POTTER-phoenix_W0QQitemZ1**********1QQcategoryZ29798QQcmdZViewItem</ViewItemURLForNaturalSearch>
    <Location>NEW JERSEY</Location>
    <GalleryURL>http://thumbs.ebaystatic.com/pict/1**********1.jpg</GalleryURL>
    <PictureURL>http://imagehost.vendio.com/bin/imageserver.x/00000000/j********k/.mids/EWEMMAMARCH2007A.jpg</PictureURL>
    <PrimaryCategoryID>29798</PrimaryCategoryID>
    <PrimaryCategoryName>Collectibles:Fantasy, Mythical & Magic:Harry Potter:Other Items</PrimaryCategoryName>
    <BidCount>1</BidCount>
    <ConvertedCurrentPrice currencyID="USD">0.88</ConvertedCurrentPrice>
    <ListingStatus>Active</ListingStatus>
    <TimeLeft>P5DT2H55M8S</TimeLeft>
    <Title>EMMA WATSON entertainment weekly HARRY POTTER phoenix</Title>
   </Item>
  </GetSingleItemResponse>


Back to list of samples

Sample: Product Details and Item Condition

Returns an item with product details and ConditionDisplayName.

Description

User b************r has searched for and found a new Apple laptop on the eBay US site. She wants to check the listing description and item specifics to confirm that it's the laptop she's looking for.

Input

To make sure she gets the item specifics, she passes ItemSpecifics in IncludeSelector, along with Description and ShippingCosts for other details of interest.

URL format. See also the non-wrapped version of this URL. For results in a format other than XML, 
specify a different value for responseencoding.
https://open.api.sandbox.ebay.com/shopping?
   callname=GetSingleItem&
   responseencoding=XML&
   siteid=0&
   version=967&
   IncludeSelector=Description,ItemSpecifics,ShippingCosts&
   ItemID=1**********2

   Here is the same input in XML format. Note that this does not include standard values.

XML format.

<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <ItemID>1**********2</ItemID>
</GetSingleItemRequest>

Output

The response includes the item specifics in ItemSpecifics, and the item condition in ConditionDisplayName.

XML format.
<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2016-03-31T16:44:53.792Z</Timestamp>
  <Ack>Success</Ack>
  <Build>E967_CORE_BUNDLED_10913188_R1</Build>
  <Version>967</Version>
  <Item>
    <Description>Brand New Apple MacBook Pro MB990LL/A 13.3 in. Notebook!</Description>
    <ItemID>1**********2</ItemID>
    <EndTime>2016-04-07T16:27:26.000Z</EndTime>
    <ViewItemURLForNaturalSearch>http://cgi.sandbox.ebay.com/ws/eBayISAPI.dll?ViewItem&item=1**********2&category=111422&var=</ViewItemURLForNaturalSearch>
    <ListingType>FixedPriceItem</ListingType>
    <Location>San Jose, California</Location>
    <PictureURL>http://i.ebayimg.com/21/!!d5v4HQBmM~$(KGrHqQOKjYEq3QfDH(5BK8KSKsuHQ~~_6.JPG</PictureURL>
    <PrimaryCategoryID>111422</PrimaryCategoryID>
    <PrimaryCategoryName>Computers & Networking:Apple Laptops & Notebooks</PrimaryCategoryName>
    <BidCount>0</BidCount>
    <ConvertedCurrentPrice currencyID="USD">500.0</ConvertedCurrentPrice>
    <ListingStatus>Active</ListingStatus>
    <TimeLeft>P6DT23H42M33S</TimeLeft>
    <Title>Apple MacBook Pro MB990LL/A 13.3 in. Notebook NEW</Title>
    <ShippingCostSummary>
      <ShippingServiceCost currencyID="USD">0.0</ShippingServiceCost>
      <ShippingType>Flat</ShippingType>
      <ListedShippingServiceCost currencyID="USD">0.0</ListedShippingServiceCost>
    </ShippingCostSummary>
    <ItemSpecifics>
      <NameValueList>
        <Name>Memory (RAM)</Name>
        <Value>-</Value>
      </NameValueList>
      <NameValueList>
        <Name>Operating System</Name>
        <Value>Mac OS X 10.5, Leopard</Value>
      </NameValueList>
      <NameValueList>
        <Name>Title</Name>
        <Value>Apple MacBook Pro MB990LL/A 13.3 in. Notebook</Value>
      </NameValueList>
      <NameValueList>
        <Name>Product Family</Name>
        <Value>-</Value>
      </NameValueList>
      <NameValueList>
        <Name>Processor Type</Name>
        <Value>Intel Core 2 Duo</Value>
      </NameValueList>
      <NameValueList>
        <Name>Processor Speed (per Core)</Name>
        <Value>-</Value>
      </NameValueList>
      <NameValueList>
        <Name>Screen Size</Name>
        <Value>-</Value>
      </NameValueList>
      <NameValueList>
        <Name>Primary Drive</Name>
        <Value>Dual Layer DVD+/-RW</Value>
      </NameValueList>
      <NameValueList>
        <Name>Processor Configuration</Name>
        <Value>-</Value>
      </NameValueList>
      <NameValueList>
        <Name>Hard Drive Capacity</Name>
        <Value />
      </NameValueList>
    </ItemSpecifics>
    <Country>US</Country>
    <AutoPay>false</AutoPay>
    <ConditionID>1000</ConditionID>
    <ConditionDisplayName>New</ConditionDisplayName>
  </Item>
</GetSingleItemResponse>

Back to list of samples

Sample: Including a Shipping Cost Summary

Retrieves a listing's basic shipping costs in addition to the default set of item fields.

Input

A seller can offer one or more shipping options to potential buyers. Some sellers will offer flat shipping while others will give users a range of options at different prices. The seller will usually show the lowest-cost shipping option first.

GetSingleItem can return the shipping and, if it exists, the insurance cost of the seller's first shipping option. To retrieve this information, pass the itemID and specify an IncludeSelector of ShippingCosts to the call.

URL format. See also the non-wrapped version of this URL. For results in a format other than XML, 
specify a different value for responseencoding.
https://open.api.ebay.com/shopping?
   callname=GetSingleItem&
   responseencoding=XML&
   siteid=0&
   version=967&
   ItemID=1**********1&
   IncludeSelector=ShippingCosts

   Here is the same input in XML format. Note that this does not include standard values.

XML format. Also available is the SOAP equivalent.

<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <ItemID>1**********1</ItemID>
  <IncludeSelector>ShippingCosts</IncludeSelector>
</GetSingleItemRequest>

Output

The response from this sample gets the listing's defuault set of fields as well as the shipping cost information. Note that retrieving shipping costs can increase the call's response time.

If you determine that the item has shipping costs, you can call GetShippingCosts with the same itemID if you need more shipping details. (It's best to call GetShippingCosts only when you know there are shipping details to return.)

XML format. Also available is the SOAP equivalent.

<?xml version="1.0" encoding="UTF-8"?>
  <GetSingleItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
   <Timestamp>2016-06-07T16:49:04.164Z</Timestamp>
   <Ack>Success</Ack>
   <Build>e967_core_APILW_4756831_R1</Build>
   <Version>967</Version>
   <Item>
    <ItemID>1**********1</ItemID>
    <ConvertedBuyItNowPrice currencyID="USD">12.88</ConvertedBuyItNowPrice>
    <EndTime>2016-06-12T18:51:06.000Z</EndTime>
    <ViewItemURLForNaturalSearch>http://cgi.ebay.com/EMMA-WATSON-entertainment-weekly-HARRY-POTTER-phoenix_W0QQitemZ1**********1QQcategoryZ29798QQcmdZViewItem</ViewItemURLForNaturalSearch>
    <Location>NEW JERSEY</Location>
    <GalleryURL>http://thumbs.ebaystatic.com/pict/1**********1.jpg</GalleryURL>
    <PictureURL>http://imagehost.vendio.com/bin/imageserver.x/00000000/j********k/.mids/EWEMMAMARCH2007A.jpg</PictureURL>
    <PrimaryCategoryID>29798</PrimaryCategoryID>
    <PrimaryCategoryName>Collectibles:Fantasy, Mythical & Magic:Harry Potter:Other Items</PrimaryCategoryName>
    <BidCount>1</BidCount>
    <ConvertedCurrentPrice currencyID="USD">0.88</ConvertedCurrentPrice>
    <ListingStatus>Active</ListingStatus>
    <TimeLeft>P5DT2H2M2S</TimeLeft>
    <Title>EMMA WATSON entertainment weekly HARRY POTTER phoenix</Title>
    <ShippingCostSummary>
     <ShippingServiceCost currencyID="USD">4.75</ShippingServiceCost>
     <InsuranceCost currencyID="USD">0.0</InsuranceCost>
     <ShippingType>Flat</ShippingType>
    </ShippingCostSummary>
   </Item>
  </GetSingleItemResponse>

Back to list of samples

Sample: Converting Prices from a Non-Local Listing

Retrieves a listing from a non-local site and converts the prices to the local currency.

Input

When searching for items on eBay, you sometimes find items that are listed on an international eBay site, but the seller is willing to ship to different countries. To support this, eBay can return the listing's price data converted into the currency of the site you're using, as well as showing the price in the listing's original currency.

This example retrieves an item listed on the US site from the eBay Germany site. By specifying siteid=77 in the URL, the German site becomes the "local" site, and the US site (where the item is listed) becomes the "foreign" site.

Pass in the itemID as usual, and specify Details in the IncludeSelector field. This causes eBay to included prices in their original currency, as well as providing other item details.

URL format. See also the non-wrapped version of this URL. For results in a format other than XML, 
specify a different value for responseencoding.
https://open.api.ebay.com/shopping?
   callname=GetSingleItem&
   responseencoding=XML&
   siteid=77&
   version=967&
   ItemID=2**********7&
   IncludeSelector=Details

   Here is the same input in XML format. Note that this does not include standard values.

XML format. Also available is the SOAP equivalent.

<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <ItemID>2**********7</ItemID>
  <IncludeSelector>Details</IncludeSelector>
</GetSingleItemRequest>

Output

The eBay response shows the original price (CurrentPrice) in US Dollars and the converted price (ConvertedCurrentPrice) in Euros. The response also shows values for BuyItNowPrice and ConveretedBuyItNowPrice, indicating that the item was listed with the Buy It Now feature.

Because the query specified the Details IncludeSelector, the result has detailed information about the listing, such as the listing type (a auction, which means it's a single-quantity, auction-style listing), information about the high bidder (anonymized as a***o, per eBay policy) and various other listing details. Note that using an IncludeSelector can increase the call's response time.

XML format. Also available is the SOAP equivalent.

<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2016-06-05T21:22:13.130Z</Timestamp>
  <Ack>Success</Ack>
  <Build>e967__Bundled_9067380_R1</Build>
  <Version>967</Version>
  <Item>
    <BestOfferEnabled>false</BestOfferEnabled>
    <BuyItNowPrice currencyID="USD">1000.0</BuyItNowPrice>
    <ItemID>2**********7</ItemID>
    <BuyItNowAvailable>true</BuyItNowAvailable>
    <ConvertedBuyItNowPrice currencyID="EUR">704.8</ConvertedBuyItNowPrice>
    <EndTime>2016-06-07T02:05:22.000Z</EndTime>
    <StartTime>2016-05-28T02:05:22.000Z</StartTime>
    <ViewItemURLForNaturalSearch>http://cgi.ebay.de/US-Fender-Highway-1
        -pro-painted-Sea-Foam-Green-Nitro_W0QQitemZ2**********7
        QQcategoryZ64400QQcmdZViewItem</ViewItemURLForNaturalSearch>
    <ListingType>Chinese</ListingType>
    <Location>Phoenix, Arizona</Location>
    <PaymentMethods>PayPal</PaymentMethods>
    <GalleryURL>http://thumbs3.ebaystatic.com/pict/9******1.jpg</GalleryURL>
    <PictureURL>http://i.ebayimg.com/04/!BTQ)2u!BGk~$(KGrHgoH-
        EQEjlLluvvMBKHe69g9dQ~~_1.JPG?set_id=8*******0F</PictureURL>
    <PostalCode>8***4</PostalCode>
    <PrimaryCategoryID>64400</PrimaryCategoryID>
    <PrimaryCategoryName>Musical Instruments:Guitar:Bass:Right-Handed:
        Fender:Jazz</PrimaryCategoryName>
    <Quantity>1</Quantity>
    <Seller>
      <UserID>d***r</UserID>
      <FeedbackRatingStar>Purple</FeedbackRatingStar>
      <FeedbackScore>862</FeedbackScore>
      <PositiveFeedbackPercent>100.0</PositiveFeedbackPercent>
    </Seller>
    <BidCount>3</BidCount>
    <ConvertedCurrentPrice currencyID="EUR">430.63</ConvertedCurrentPrice>
    <CurrentPrice currencyID="USD">611.0</CurrentPrice>
    <HighBidder>
      <UserID>h***e</UserID>
      <FeedbackPrivate>false</FeedbackPrivate>
      <FeedbackRatingStar>Yellow</FeedbackRatingStar>
      <FeedbackScore>11</FeedbackScore>
    </HighBidder>
    <ListingStatus>Active</ListingStatus>
    <QuantitySold>0</QuantitySold>
    <ReserveMet>false</ReserveMet>
    <ShipToLocations>Worldwide</ShipToLocations>
    <Site>US</Site>
    <TimeLeft>P1DT4H43M9S</TimeLeft>
    <Title>US Fender Highway 1, pro painted Sea Foam Green Nitro</Title>
    <HitCount>798</HitCount>
    <Subtitle>Nordstrand NPJ4SV pick ups, Gotoh 28:1 Vintage Tuners</Subtitle>
    <PrimaryCategoryIDPath>619:3858:38078:160931:64399:64400</PrimaryCategoryIDPath>
    <Country>US</Country>
    <MinimumToBid currencyID="USD">621.0</MinimumToBid>
    <AutoPay>true</AutoPay>
    <PaymentAllowedSite>CanadaFrench</PaymentAllowedSite>
    <PaymentAllowedSite>Spain</PaymentAllowedSite>
    <PaymentAllowedSite>Canada</PaymentAllowedSite>
    <PaymentAllowedSite>US</PaymentAllowedSite>
    <IntegratedMerchantCreditCardEnabled>false</IntegratedMerchantCreditCardEnabled>
  </Item>
</GetSingleItemResponse>

Back to list of samples

Sample: Getting All Variations in a Multi-Variation Listing

Retrieves a multi-variation listing with all available variations.

Description

User b************r has searched for and found a listing with women's Polo tops. She has determined that this is a multi-variation listing and she wants to see all the available tops within the listing.

Input

The key inputs for this call scenario are the ItemID, which she obtained from a search call response, and IncludSelector, which she sets to Variations and ItemSpecifics to make sure she sees all the available variations and gets any shared specifics, such as Brand.

URL format. See also the non-wrapped version of this URL. For results in a format other than XML, 
specify a different value for responseencoding.
https://open.api.ebay.com/shopping?
   callname=GetSingleItem&
   responseencoding=XML&
   siteid=0&
   version=967&
   ItemID=3**********0&
   IncludeSelector=Variations,ItemSpecifics

   Here is the same input in XML format. Note that this does not include standard values.

XML format.

<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <ItemID>3**********0</ItemID>
  <IncludeSelector>Variations,ItemSpecifics</IncludeSelector>
</GetSingleItemRequest>

Output

The response includes all the basic details of the listing and all the available variations. The important fields for b************r are the Variation fields, which help her decide which variation she wants to purchase, the quantity of items available in that variation, and the variation's price.

Note that the item-level price (Item.ConvertedCurrentPrice) is the value of the lowest-priced variation that is still available for sale.

Note that the sample output displays only a few variations (to keep the sample shorter). In practice, the response could be much larger--a single listing can contain up to 120 variations (as of the time of this writing).

XML format.
<?xml version="1.0" encoding="utf-8"?>
<GetSingleItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2016-05-04T01:05:11.834Z</Timestamp>
  <Ack>Success</Ack>
  <Build>e967__Bundled_8552129_R1</Build>
  <Version>967</Version>
  <Item>
    <ItemID>3**********0</ItemID>
    <EndTime>2016-06-03T00:00:09.000Z</EndTime>
    <ViewItemURLForNaturalSearch>http://cgi.ebay.com/New-Ralph-Lauren-Polo-shirt-Pink-Black-Blue-Yellow_W0QQitemZ3**********0QQcategoryZ37565QQvarZ5**********5QQcmdZViewItem</ViewItemURLForNaturalSearch>
    <ListingType>FixedPriceItem</ListingType>
    <Location>San Jose, California</Location>
    <PictureURL>http://i12.ebayimg.com/03/i/04/8a/5f/a******l.JPG</PictureURL>
    <PictureURL>http://i22.ebayimg.com/01/i/04/8e/53/6******l.JPG</PictureURL>
    <PictureURL>http://i4.ebayimg.ebay.com/01/i/000/77/3c/d********l.JPG</PictureURL>
    <PrimaryCategoryID>37565</PrimaryCategoryID>
    <PrimaryCategoryName>Everything Else:Test Auctions:Attributes:Attributes7</PrimaryCategoryName>
    <BidCount>0</BidCount>
    <ConvertedCurrentPrice currencyID="USD">17.99</ConvertedCurrentPrice>
    <ListingStatus>Active</ListingStatus>
    <TimeLeft>P29DT22H54M40S</TimeLeft>
    <Title>New Ralph Lauren Polo shirt Pink Black Blue Yellow</Title>
    <ItemSpecifics>
      <NameValueList>
        <Name>Occasion</Name>
        <Value>Casual</Value>
      </NameValueList>
      <NameValueList>
        <Name>Brand</Name>
        <Value>Ralph Lauren</Value>
      </NameValueList>
      <NameValueList>
        <Name>Style</Name>
        <Value>Polo Shirt</Value>
      </NameValueList>
      <NameValueList>
        <Name>Sleeve Style</Name>
        <Value>Short Sleeve</Value>
      </NameValueList>
    </ItemSpecifics>
    <Country>US</Country>
    <AutoPay>false</AutoPay>
    <Variations>
      <Variation>
        <SKU>R*****************_Pnk_S</SKU>
        <StartPrice currencyID="USD">17.99</StartPrice>
        <Quantity>4</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Pink</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>S</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>0</QuantitySold>
        </SellingStatus>
      </Variation>
      <Variation>
        <SKU>R*****************_Pnk_M</SKU>
        <StartPrice currencyID="USD">17.99</StartPrice>
        <Quantity>8</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Pink</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>0</QuantitySold>
        </SellingStatus>
      </Variation>
      <Variation>
        <SKU>R*****************_Blk_S</SKU>
        <StartPrice currencyID="USD">20.0</StartPrice>
        <Quantity>10</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Black</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>S</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>0</QuantitySold>
        </SellingStatus>
      </Variation>
      <Variation>
        <SKU>R*****************_Blk_M</SKU>
        <StartPrice currencyID="USD">20.0</StartPrice>
        <Quantity>10</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Black</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>0</QuantitySold>
        </SellingStatus>
      </Variation>
      <Variation>
        <SKU>R*****************_Blu_S</SKU>
        <StartPrice currencyID="USD">20.0</StartPrice>
        <Quantity>10</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Blue</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>S</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>0</QuantitySold>
        </SellingStatus>
      </Variation>
      <Variation>
        <SKU>R*****************_Blu_M</SKU>
        <StartPrice currencyID="USD">20.0</StartPrice>
        <Quantity>10</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Blue</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>0</QuantitySold>
        </SellingStatus>
      </Variation>
      <Pictures>
        <VariationSpecificName>Color</VariationSpecificName>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Pink</VariationSpecificValue>
          <PictureURL>http://i12.ebayimg.com/03/i/04/8a/5f/a******l.JPG</PictureURL>
          <PictureURL>http://i12.ebayimg.com/03/i/04/8a/5f/a******2.JPG</PictureURL>
        </VariationSpecificPictureSet>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Blue</VariationSpecificValue>
          <PictureURL>http://i22.ebayimg.com/01/i/04/8e/53/6******l.JPG</PictureURL>
          <PictureURL>http://i22.ebayimg.com/01/i/04/8e/53/6******2.JPG</PictureURL>
          <PictureURL>http://i22.ebayimg.com/01/i/04/8e/53/6******3.JPG</PictureURL>
        </VariationSpecificPictureSet>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Black</VariationSpecificValue>
          <PictureURL>http://i4.ebayimg.ebay.com/01/i/000/77/3c/d********l.JPG</PictureURL>
        </VariationSpecificPictureSet>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Yellow</VariationSpecificValue>
          <PictureURL>http://i4.ebayimg.ebay.com/01/i/000/77/3c/d********l.JPG</PictureURL>
        </VariationSpecificPictureSet>
      </Pictures>
      <VariationSpecificsSet>
        <NameValueList>
          <Name>Size</Name>
          <Value>XS</Value>
          <Value>S</Value>
          <Value>M</Value>
          <Value>L</Value>
          <Value>XL</Value>
        </NameValueList>
        <NameValueList>
          <Name>Color</Name>
          <Value>Black</Value>
          <Value>Pink</Value>
          <Value>Yellow</Value>
          <Value>Blue</Value>
        </NameValueList>
      </VariationSpecificsSet>
    </Variations>
  </Item>
</GetSingleItemResponse>

Back to list of samples



Change History

Change Date Description
1293
2023-01-13
  • Item.CharityNumber (deprecated): This field is no longer used to identify a charitable organization. Instead, the CharityID field is used.
1247
2022-02-25
  • Item.HitCount (deprecated): Hit counters are no longer shown in View Item pages, so this field is no longer applicable.
1157
2020-06-05
  • Item.ReturnPolicy (doc change): Updated field descriptions in the ReturnPolicy container to make it more clear that if a seller does not add a separate international return policy for an item, the settings in the domestic return policy will be used instead.
1145
2020-03-13
  • Charity.CharityID, Charity.CharityNumber (doc change): Clarified the difference between CharityID (eBay identifier) and CharityNumber (PayPal Giving Fund identifier), and also added a note about CharityNumber field being scheduled for deprecation.
1139
2020-01-31
  • Item.PostalCode (modified): Returned postal code values will now be masked to all users except for the seller of the item.
1119
2019-08-02
  • GetSingleItem (modified): Shopping API endpoint updated to support 'https' protocol. So, the following production endpoint should be used for all Shopping API calls: https://open.api.ebay.com/shopping. The http://open.api.ebay.com/shopping endpoint will still be supported for the time being, but is subject to be wired off.
  • SiteCodeType (doc change): The eBayMotors enumeration value was erroneously hidden from this type definition. eBay Motors is technically a subdomain of eBay.com, but this value is still returned if the listing is in an eBay Motors category.
1085
2018-10-26
  • Item.PaymentMethods (modified): For sellers enrolled in the new eBay Managed Payments program, a specified payment method is not necessary. If a payment method is specified, such as PayPal, it will be dropped from the listing and the seller will get a warning message when the call is run.
  • BuyerPaymentMethodCodeType (doc change): Hid the PaisaPay-related values from the type description, as the eBay India site is no longer a functional marketplace, and eBay India was the only marketplace that accepts PaisaPay as a payment method.
  • Item.AutoPay (modified): The immediate payment feature is also available for sellers enrolled in the new eBay Managed Payments program. In the past, this feature was only available to sellers who were offering PayPal as the only available payment method.
  • VATDetailsType (doc change): Cleaned up type documentation.
1063
2018-05-25
  • ReturnPolicy.InternationalRefund (added): This release adds the option to specify return policies for international returns (which are items returned using an international shipping service). If you sell internationally, your international return policy is by default inherited from your domestic return policy (in this case ReturnPolicy.RefundOption). Set this option to set up an international return policy if you want to differentiate your international return policy from your domestic return policy. For details, see the Release Notes.
  • ReturnPolicy.InternationReturnsAccepted (added): This release adds the option to specify return policies for international returns.
  • ReturnPolicy.InternationReturnsWithin (added): This release adds the option to specify return policies for international returns.
  • ReturnPolicy.InternationShippingCostPaidBy (added): This release adds the option to specify return policies for international returns.
  • ReturnPolicy.RestockingFeeValue (deprecated): This release deprecates RestockingFeeValueOption. As of this release, sellers are no longer allowed to specify a special restocking fee for returned items. Values passed to this field are ignored.
  • ReturnPolicy.RestockingFeeValueOption (deprecated): This release deprecates RestockingFeeValueOption. As of this release, sellers are no longer allowed to specify a special restocking fee for returned items. Values passed to this field are ignored.
  • ReturnPolicy.WarrantyDuration (deprecated): This release deprecates WarrantyDurationOption. As of this release, eBay no longer supports item warranties. Values passed to this field are ignored.
  • ReturnPolicy.WarrantyOffered (deprecated): This release deprecates WarrantyOfferedOption. As of this release, eBay no longer supports item warranties. Values passed to this field are ignored.
  • ReturnPolicy.WarrantyType (deprecated): This release deprecates WarrantyTypeOption. As of this release, eBay no longer supports item warranties. Values passed to this field are ignored.
  • ReturnPolicy.Description (modified): This field is now valid for only the following marketplaces: EBAY_DE EBAY_ES EBAY_FR EBAY_IT. Values passed to this field in other marketplaces are ignored.
  • ReturnPolicy.RefundOption (modified): This field is now valid only on the US marketplace.
1057
2018-04-13
  • Variation.ProductID (added): The unique identifier of an eBay Catalog product (ePID). This field will be returned if there is an eBay Catalog product associated with the variation.
0975
2016-07-01
  • Item.AvailableForPickupDropOff (doc change): Field description updated to state that the IncludeSelector field must be included in the call request with its value set to 'Details' in order for this field to be returned.
  • Item.EligibleForPickupDropOff (doc change): Field description updated to state that the IncludeSelector field must be included in the call request with its value set to 'Details' in order for this field to be returned.
0955
2016-02-12
  • BuyerPaymentMethodCodeType (modified): The Moneybookers, ProPay, and Paymate enumeration values have been deprecated, and will no longer be returned in any calls.
0945
2015-10-15
  • BuyerPaymentMethodCodeType (modified): Moneybookers, ProPay, or Paymate will no longer be accepted as valid PaymentMethods for new listings. However, these payment methods will still be allowed for existing listings, so these values may still get returned until these payment methods are completely removed from all listings.
0905
2015-01-09
  • DiscountPriceInfoType (modified): The Strikethrough Pricing Feature is now available for more sites. These sites include US, eBay Motors, UK, Germany, Canada (English and French), France, Italy, and Spain.
0899
2014-11-04
  • Item.ReturnPolicy (doc change): More detail was provided for multiple fields in the ReturnPolicy container.
0897
2014-10-21
  • SiteCodeType (modified): 'Russia' added as enumeration value to support selling on the new Russia site.
0893
2014-09-23
  • Item.PictureURL (doc change): Field description was modified to mention that up to 12 externally-hosted pictures may now be added to a listing.
0885
2014-07-29
  • Item.IgnoreQuantity (doc change): Although originally added to the Shopping WSDL in Version 871, this field was omitted from the API Call Reference docs until this release. If this boolean flag is returned (and it is only returned if 'True'), it indicates that items in a multi-quantity listing are currently only available through local fulfillment methods such as eBay Now, In-Store Pickup, or Click and Collect, and that the value in the Quantity field under the Item node or under any Variation node should be ignored since this value is only used to indicate how many items are available through the "Ship to home" method.
0883
2014-07-15
  • Item.TopRatedListing (doc change): This field's description was updated to include the latest Top-Rated Seller and Top-Rated Listing requirements.
0873
2014-05-06
  • Item.ShippingCostSummary (doc change): This container and its children do not provide reliable shipping cost information when returned by the GetSingleItem call. If a listing has shipping costs, use the GetShippingCosts call to get more details about the services and costs that the seller is offering.
0871
2014-04-22
  • Item.AvailableForPickupDropOff (added): This boolean field will be returned as 'true' if the item is available for the "Pick Up, Drop Off" feature, a feature that will only be supported in the UK, initially.
  • Item.EligibleForPickupDropOff (added): This boolean field will be returned as 'true' if the item is eligible for the "Pick Up, Drop Off" feature, a feature that will only be supported in the UK, initially.
0869
2014-04-08
  • Item.HandlingTime (doc change): The description clarifies that HandlingTime can return a value of 0, which indicates that the seller commits to same day handling. For orders placed (and cleared payment received) before the local order cut off time, the item must be shipped by the end of the current day. For orders completed on or after the order cut off time, the item must be shipped by the end of the following day (excluding weekends and local holidays).
0867
2014-03-25
  • Item.eBayNowAvailable (added): This boolean field will be returned as 'true' if the item is available for eBay Now delivery.
0857
2014-01-14
  • SimpleItemType.eBayNowEligible (added): This flag is returned if the eBay Item is available for eBay Now delivery.
0849
2013-11-05
  • Item.PaymentMethods (modified): 'CreditCard' and 'DirectDebit' added as acceptable buyer payment methods. These two values will only be returned for eBay Now-enabled listings.
0837
2013-08-29
  • QuantitySoldByPickupInStore (added): This field indicates the total quantity of items or total quantity of item variations sold and picked up by buyers using the In-Store Pickup option. This field is returned at the item level and at the variation level (for multi-variation listings). At the item level, this value is the total quantity of items (for single and multi-variation listings) sold and picked up by buyers using the In-Store Pickup option. At the variation level, this value is the total quantity of item variations sold and picked up by buyers using the In-Store Pickup option.
  • SKU (added): The seller-defined SKU (stock keeping unit) for an item is now returned in GetSingleItem if it is set for the listing.
  • NewBestOffer (added): This boolean field will be returned as 'true' if a fixed-price listing is requiring immediate payment, and the item's category supports Immediate Payment for Best Offers.
0821
2013-04-24
  • Item.ItemCompatibilityCount (added): This integer indicates the number of compatible applications specified for the given item (that is, products with which the item is compatible). Applies to items listed with fitment by application only (either manually or with a catalog product that supports compatibility).
  • Item.ItemCompatibilityList.Compatibility (added): Contains details for assemblies with which a part is compatible (compatible applications), each consisting of a list of name-value pairs and related compatibility notes. For example, to specify a part's compatibility with a vehicle, the name would map to standard vehicle characteristics (e.g., Year, Make, Model, Trim, and Engine). The values describe the specific vehicle, such as a 2006 Honda Accord. Parts Compatibility is supported in limited Parts & Accessories categories for the eBay Motors (US) site (site ID 100) only.
0801
2012-11-28
  • Item.PictureURL (modified): The maximum length of picture URLs has increased from 150 to 500 characters.
0799
2012-11-07
  • Item.ReturnPolicy.RestockingFeeValue, Item.ReturnPolicy.RestockingFeeValueOption (added): This string field is used by the seller to indicate the restocking fee that will be charged by the seller for returned items.
0789
2012-08-29
  • Item.ConditionDescription (added): This string field is used by the seller to more clearly describe the condition of items that are not brand new. It is only returned if set for the listing.
0785
2012-08-01
  • Item.GlobalShipping (added): Indicates whether eBay's Global Shipping Program is offered for a listing. If the value of GlobalShipping is True, the Global Shipping Program is the default international shipping option for the listing. If the value of GlobalShipping is False, the seller might have specified an alternative international shipping service for the listing, or no international shipping option at all.
  • Item.UnitInfo (added): This container includes the UnitType and UnitQuantity fields to provide information about the weight, volume or other quantity measurement of a listed item so buyers can compare per-unit prices. The European Union requires listings for certain types of products to include the price per unit.
0779
2012-06-20
  • VhrAvailable, VhrUrl (added): Returned for eBay Motors listings with Vehicle History Reports.
0775
2012-05-23
  • QuantityInfo.MinimumRemnantSet (added): This field is returned for US and CA event ticket listings (if set by the seller). This field enables the seller to avoid being left with 1 item in a multi- quanity, fixed-priced event ticket listing, by setting the minimum number of items that should remain if a buyer doesn't purchase all tickets in the listing.
  • TopRatedListing (added): This field is returned if the listing meets the requirements for qualifying as a Top-Rated 2.0 listing.
0723
2011-05-25
  • DiscountPriceInfo (added): Added the ability to retrieve discount pricing values (DiscountPricingInfo) for an item, which gives the item either a Strike-Through Pricing (STP) or Minimum Advertised Price (MAP) display treatment. This feature is available to qualified sellers (and their associated developers) who participate in the Discount Pricing program. Once qualified, sellers can apply Discount Pricing to both MSKU and Non-MSKU items. STP is available on the US, UK, and DE sites while MAP is available only on the US site.
    This feature will be available mid-Summer, 2011. Sellers should contact their account manager or Customer Service to see if they qualify for the Strike-Through Pricing program. For more information, see Displaying Discount Pricing Information to Buyers.
0689
2010-09-20
  • ShippingCostSummary.LocalPickup (added): If IncludeSelector is set to ShippingCost, and if the seller has specified local pickup as the shipping option for the item, the LocalPickup boolean is returned as true. If local pickup was not specified for the item, the LocalPickup boolean is not returned at all.
0679
2010-07-21
  • SimpleItemType.QuantityThreshold, SimpleItemtype.QuantityAvailableHint (added): Set a quantity threshold for the number of items available. As long as the number of items remains above the threshold, GetSingleItem will return a quantity in the form, "More than n available," where n is the quantity threshold.
0661
2010-03-17
  • ConditionID, ConditionDisplayName (added): ConditionID and ConditionDisplayName are supported in the Sandbox for a few categories. Starting in May 2010, they will be supported in production for most categories. These fields are used instead of ItemSpecifics to specify the item's condition in some categories.
0637
2009-09-30
  • Item.LotSize (added): A lot is a set of two or more similar items that must be purchased together in a single transaction. When an item's LotSize is specified, the listing price reflects the price of each lot (not each item within the lot).
  • ShippingCostSummaryType.ListedShippingServiceCost (added): The listed shipping cost for an item.
0603
2009-02-04
  • Item.IntegratedMerchantCreditCardEnabled (added): Integrated merchant credit card status of an item.
0589
2008-10-29
  • Item.PaymentAllowedSite (added): Enables you to view the sites on which an item can be purchased.
0573
2008-07-09
  • Item.DigitalDeliveryRequirements, Item.DigitalDeliveryMethod (deprecated): The digital delivery feature is disabled as of March 28, 2008.
0559
2008-04-02
  • SimpleItem.BusinessSellerDetails (modified): GetSingleItem now returns the seller's information (in a business card format) if the seller's SellerBusinessCodeType is set to 'Commercial'. This is only applicable for sites where Business Seller options are supported.
0535
2007-10-12
  • CharityType.CharityID, CharityType.CharityName, CharityType.CharityNumber, CharityType.DonationPercent, CharityType.Mission, CharityType.LogoURL, CharityType.CharityListing, CharityType.CharityStatusCodeType.Status (added): Additional fields (showing information about seller's charitable status) are returned in this call.
0533
2007-10-03
  • Item.Seller.PositiveFeedbackPercent, Item.ReturnPolicy (added): Additional fields (showing percentage value of seller's positive feedback and showing return policy details, if any) are returned in this call.
0527
2007-08-22
  • ListingType (modified): The ListingType field now is returned by default.
0525
2007-08-08
  • HitCount, PrimaryCategoryIDPath, SecondaryCategoryID, SecondaryCategoryIDPath, SecondaryCategoryIDName, Subtitle (added): Several new fields have been added in the response.
0515
2007-06-10
  • (added) New call.