findItemsAdvanced
Note: All calls in the Finding 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.
This call searches for items on eBay by category or keyword or both.
Usage Details
You can search by category (using categoryId), search by keywords (using keywords), or a combination of the two. By setting the descriptionSearch field to true
, your keyword queries also search the item descriptions, in addition to searching through the item title and subtitles.
The findItemsAdvanced response contains details about items matching your search criteria. By default, eBay returns a specific set of data in the response to your call. Control findItemsAdvanced result sets using the following methods:
- Searching for items available on a specific eBay site
The GLOBAL-ID URL parameter (or X-EBAY-SOA-GLOBAL-ID HTTP header) specifies the eBay site to use for searches. - Filtering results with item filters
You can control your results by specifying item filters (itemFilter) for a variety of properties, including the item condition, number of bids, price range, listing type, and more. - Refining results with aspect filters
Aspect filters (aspectFilter) let you use standard item characteristics, such as Style or Color, to refine your search results. - Including additional data in the response
Specify one or more outputSelector fields to retrieve more than the default set of response data. For example, you can retrieve seller information for each item, or an aspect histogram. - Sorting results
Use sortOrder to specify the order in which returned items are sorted, such as by price or by listing end time. - Paginating the results
Use paginationInput to divide the items matching the search criteria into subsets, or "pages," of data.
For details on these response control mechanisms, refer to findItemsByKeywords.
Note: Starting October 2014, domains will be deprecated.
This call will continue to accept requests containing references to domains (such as domainFilter) and will continue to return references to domains (such as domainDisplayName). The behavior will differ, as follows, depending on the fields specified in the request/response.
|
If you are an eBay affiliate, you can specify your affiliate information using the fields in the affiliate container. By specifying your affiliate information, you can earn commissions on user activity generated from your site. Affiliate data is embedded in the viewItemURL URLs returned in your search results.
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:
- findItemsIneBayStores - Finds items in eBay stores. Can search a specific store or can search all stores with a keyword query.
- findItemsByProduct - Finds items based upon a product ID, such as an ISBN, UPC, EAN, or ePID.
- getSearchKeywordsRecommendation - Checks specified keywords and returns correctly spelled keywords for best search results.
Output Detail Controls Samples Change History |
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).
<?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <!-- Call-specific Input Fields --> <aspectFilter> AspectFilter <aspectName> string </aspectName> <aspectValueName> string </aspectValueName> <!-- ... more aspectValueName values allowed here ... --> </aspectFilter> <!-- ... more aspectFilter nodes allowed here ... --> <categoryId> string </categoryId> <!-- ... more categoryId values allowed here ... --> <descriptionSearch> boolean </descriptionSearch> <domainFilter> DomainFilter <domainName> string </domainName> <!-- ... more domainName values allowed here ... --> </domainFilter> <!-- ... more domainFilter nodes allowed here ... --> <itemFilter> ItemFilter <name> ItemFilterType </name> <paramName> token </paramName> <paramValue> string </paramValue> <value> string </value> <!-- ... more value values allowed here ... --> </itemFilter> <!-- ... more itemFilter nodes allowed here ... --> <keywords> string </keywords> <outputSelector> OutputSelectorType </outputSelector> <!-- ... more outputSelector values allowed here ... --> <!-- Standard Input Fields --> <affiliate> Affiliate <customId> string </customId> <geoTargeting> boolean </geoTargeting> <networkId> string </networkId> <trackingId> string </trackingId> </affiliate> <buyerPostalCode> string </buyerPostalCode> <paginationInput> PaginationInput <entriesPerPage> int </entriesPerPage> <pageNumber> int </pageNumber> </paginationInput> <sortOrder> SortOrderType </sortOrder> </findItemsAdvancedRequest>
Argument | Type | Occurrence | Meaning |
---|
Call-specific Input Fields [Jump to standard fields] |
aspectFilter | AspectFilter | Optional,
repeatable: [0..*] |
Aspect filters refine (limit) the number of items returned by a find request. Obtain input values for aspectFilter fields from an aspectHistogramContainer returned in the response of a previous query. By issuing a series of find queries, you can continually refine the items returned in your responses. Do this by repeating a query using the aspect values returned in one response as the input values to your next query. For example, the aspectHistogramContainer in a response on Men's Shoes could contain an aspect of Size, along with "aspect values" for the different sizes currently available in Men's Shoes. By populating aspectFilter fields with the values returned in an aspectHistogramContainer, you can refine the item results returned by your new query. See:
|
aspectFilter.aspectName | string | Optional | Name of a standard item characteristic associated with a given domain. For example, "Optical Zoom" or "Megapixels" are aspects for the Digital Cameras domain. The current aspect names associated with a specific domain can be found in the aspect histogram. Aspect histograms can be retrieved for a given keyword query or category. The aspect histogram contains information about aspects from the domain that is most relevant to your search (or category). |
aspectFilter.aspectValueName | string | Optional,
repeatable: [1..*] |
A value name for a given aspect. For example, "Point & Shoot" is a value name for the "Product Type" aspect in the "Digital Cameras" domain. |
categoryId | string | Conditional,
repeatable: [0..3] |
Specifies the category from which you want to retrieve item listings. This field can be repeated to include multiple categories. Up to three (3) categories can be specified. If a specified category ID doesn't match an existing category for the site, eBay returns an invalid-category error message. To determine valid categories, use the Trading API GetCategories call. findItemsAdvanced requires that you specify keywords and/or a categoryId in the request. The exception to this rule is when the Seller item filter is used. The Seller item filter can be used without specifying either keywords or categoryId to retrieve all active items for the specified seller. Category searches are not supported on the eBay Italy site (global ID EBAY-IT) at this time. Max length: 10. See GetCategories in the Trading API for information on retrieving eBay category information. |
descriptionSearch | boolean | Optional |
Specifies whether your keyword query should be applied to item descriptions in addition to titles. Searching the text of item descriptions incurs a performance hit (it can take longer than searches that don't include description searches). If true, the text of the item's description and subtitles will be included in the search. If false, only item titles are included in keyword searches. Default: false. |
domainFilter | DomainFilter | Optional,
repeatable: [0..*] |
Restricts results to items listed within the specified domain. Domains are a buy-side grouping of items. such as shoes or digital cameras. A domain can span multiple eBay categories. |
domainFilter.domainName | string | Optional,
repeatable: [1..*] |
Specify the name of the domain to which you want to restrict search results. Only items listed within the specified domain will be returned in the search results. Domain names can be retrieved from an aspect histogram. |
itemFilter | ItemFilter | Optional,
repeatable: [0..*] |
Reduce the number of items returned by a find request using item filters. Use itemFilter to specify name/value pairs. You can include multiple item filters in a single request. |
itemFilter.name | ItemFilterType | Optional |
Specify the name of the item filter you want to use. The itemFilter name must have a corresponding value. You can apply multiple itemFilter Name/Value pairs in a single request. Item Filter Names:
Applicable values: See name. See:
|
itemFilter.paramName | token | Optional |
In addition to filter Name/Value pairs, some itemFilters use an additional parameter Name/Value pair. Specifically, filters that use currency values (MaxPrice and MinPrice) make use of addition parameters. When you use these itemFilters, set paramName to Currency and provide the currency ID in paramValue. For example, if you use the MaxPrice itemFilter, you will need to specify a parameter Name of Currency with a parameter Value that specifies the type of currency desired. Note that for MaxPrice and MinPrice itemFilters, the default value for paramName is Currency. |
itemFilter.paramValue | string | Optional |
The currency value associated with the respective itemFilter parameter Name. Usually paramName is set to Currency and paramValue is set to the currency type in which the monetary transaction occurs. Note that for MaxPrice and MinPrice itemFilters, the default value for paramValue is USD. See currencyId Values for a list of possible currency enumeration values. |
itemFilter.value | string | Optional,
repeatable: [1..*] |
The value associated with the respective item filter name. Allowed values and datatypes vary for a given filter name.
See ItemFilterType for information about the allowed values, usage rules, and dependencies. |
keywords | string | Conditional |
Specify one or more words to use in a search query for finding items on eBay. By default, queries search item titles only. When running queries, it is best to include complete keywords values--eBay checks words in context with each other. If you are using a URL request and your keyword query consists of multiple words, use "%20" to separate the words. For example, use "Harry%20Potter" to search for items containing those words in any order. Queries aren't case-sensitive, so it doesn't matter whether you use uppercase or lowercase letters. You can incorporate wildcards in a multi-word search. For example, "ap*%20ip*" returns results for "apple ipod" among other matches. The words "and" and "or" are treated like any other word (and not their logical connotation). Only use "and", "or", or "the" if you are searching for listings containing those specific words. findItemsAdvanced requires that you specify keywords and/or a categoryId in the request. The exception to this rule is when the Seller item filter is used. The Seller item filter can be used without specifying either keywords or categoryId to retrieve all active items for the specified seller. Max length: 350. The maximum length for a single word is 98. Min length: 2. See Searching by Keywords for a list of valid wildcard characters. |
outputSelector | OutputSelectorType | Optional,
repeatable: [0..*] |
Defines what data to return, in addition to the default set of data, in a response. If you don't specify this field, eBay returns a default set of item fields. Use outputSelector to include more information in the response. The additional data is grouped into discrete nodes. You can specify multiple nodes by including this field multiple times, as needed, in the request. If you specify this field, the additional fields returned can affect the call's response time (performance), including in the case with feedback data. Applicable values: See outputSelector. See Detail Controls. |
Standard Input Fields |
affiliate | Affiliate | Optional |
Container for affiliate details. eBay uses the specified affiliate information to build a View Item URL and Product URL string with correctly formatted affiliate tracking information, which it returns in the response. You can publish these URLs, and if a user clicks them to access eBay, the respective affiliate might get a commission, depending on the user's actions.
See:
|
affiliate.customId | string | Optional | You can define an affiliate customId if you want an ID to monitor your marketing efforts. Chose an ID up to up to 256 characters in length. If you are using the eBay Partner Network, and you provide a customId, the tracking URL returned by the eBay Partner Network will contain your customId value. |
affiliate.geoTargeting | boolean | Optional | The lgeo parameter will be used for geo-targeting feature that is already implemented on the affiliate tracking side |
affiliate.networkId | string | Optional |
Specifies your tracking partner for affiliate commissions. Affiliates earn money from eBay for driving traffic to eBay. This field is required if you specify a tracking ID. Depending on your tracking partner, specify one of the following values. Not all partners are valid for all sites. For PlaceOffer, only the eBay Partner Network and Mediaplex are valid: 2 = Be Free 3 = Affilinet 4 = TradeDoubler 5 = Mediaplex 6 = DoubleClick 7 = Allyes 8 = BJMT 9 = eBay Partner Network See eBay Partner Network site for information about commissions. |
affiliate.trackingId | string | Optional | Specify the affiliate value obtained from your tracking partner. For the eBay Partner Network, the tracking ID is the provided Campaign ID ("campid"). A Campaign ID is a unique 10-digit number used for associating traffic and is valid across all programs to which you have been accepted. Another example of this value is the Affiliate ID given to you by TradeDoubler. |
buyerPostalCode | string | Optional |
The postal code of the buyer. This is used as the basis for proximity searches as well as local searches. A proximity search requires buyerPostalCode and a MaxDistance item filter. A local search requires buyerPostalCode and item filters for MaxDistance and LocalSearch. Note: To get the accurate shipping cost for items listed using a rate table, you must include buyerPostalCode in the request. See findItemsByKeywords Call Sample: Proximity Search for an example of how to restrict searches by distance. |
paginationInput | PaginationInput | Optional |
Controls the pagination of the result set. Child elements specify the maximum number of item listings to return per call and the page of data to return. Controls the number of listings returned in the response, but does not specify the details to return for each listing. Note: No more than 10,000 items can be retrieved for a given search, regardless of how many matches are found. This limit is enforced by the maximum page number allowed (100) and the maximum entries per page allowed (100). |
paginationInput.entriesPerPage | int | Optional |
Specifies the maximum number of entries to return in a single call. If the number of entries found on the specified pageNumber is less than the value specified here, the number of items returned will be less than the value of entriesPerPage. This indicates the end of the result set. If entriesPerPage is set to a number greater than 100, the default value, 100, will be used. Min: 1. Max: 100. Default: 100. |
paginationInput.pageNumber | int | Optional |
Specifies which subset of data (or "page") to return in the call response. The number of data pages is determined by the total number of items matching the request search criteria (returned in paginationOutput.totalEntries) divided by the number of entries to display in each response (entriesPerPage). You can return up to the first 100 pages of the result set by issuing multiple requests and specifying, in sequence, the pages to return. Min: 1. Max: 100. Default: 1. |
sortOrder | SortOrderType | Optional |
Sort the returned items according to a single specified sort order. Default: BestMatch. Applicable values: See sortOrder. |
Input Detail Controls Samples Change History |
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).
<?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedResponse xmlns="http://www.ebay.com/marketplace/search/v1/services"> <!-- Call-specific Output Fields --> <aspectHistogramContainer> AspectHistogramContainer <aspect name="string"> Aspect <valueHistogram valueName="string"> AspectValueHistogram <count> long </count> </valueHistogram> <!-- ... more valueHistogram nodes allowed here ... --> </aspect> <!-- ... more aspect nodes allowed here ... --> <domainDisplayName> token </domainDisplayName> <domainName> string </domainName> </aspectHistogramContainer> <categoryHistogramContainer> CategoryHistogramContainer <categoryHistogram> CategoryHistogram (Category) <categoryId> string </categoryId> <categoryName> string </categoryName> <childCategoryHistogram> CategoryHistogram (Category) <categoryId> string </categoryId> <categoryName> string </categoryName> <childCategoryHistogram> CategoryHistogram (Category) <categoryId> string </categoryId> <categoryName> string </categoryName> <childCategoryHistogram> CategoryHistogram (Category) </childCategoryHistogram> <!-- >>> childCategoryHistogram can be nested within itself an unlimited number of times >>> --> <!-- ... more childCategoryHistogram values allowed here ... --> <count> long </count> </childCategoryHistogram> <!-- ... more childCategoryHistogram values allowed here ... --> <count> long </count> </childCategoryHistogram> <!-- ... more childCategoryHistogram values allowed here ... --> <count> long </count> </categoryHistogram> <!-- ... more categoryHistogram values allowed here ... --> </categoryHistogramContainer> <conditionHistogramContainer> ConditionHistogramContainer <conditionHistogram> ConditionHistogram <condition> Condition <conditionDisplayName> string </conditionDisplayName> <conditionId> int </conditionId> </condition> <count> int </count> </conditionHistogram> <!-- ... more conditionHistogram nodes allowed here ... --> </conditionHistogramContainer> <!-- Standard Output Fields --> <ack> AckValue </ack> <errorMessage> ErrorMessage <error> ErrorData <category> ErrorCategory </category> <domain> string </domain> <errorId> long </errorId> <exceptionId> token </exceptionId> <message> string </message> <parameter name="string"> ErrorParameter (string) </parameter> <!-- ... more parameter values allowed here ... --> <severity> ErrorSeverity </severity> <subdomain> string </subdomain> </error> <!-- ... more error nodes allowed here ... --> </errorMessage> <itemSearchURL> anyURI </itemSearchURL> <paginationOutput> PaginationOutput <entriesPerPage> int </entriesPerPage> <pageNumber> int </pageNumber> <totalEntries> int </totalEntries> <totalPages> int </totalPages> </paginationOutput> <searchResult count="int"> SearchResult <item> SearchItem <attribute> ItemAttribute </attribute> <!-- ... more attribute nodes allowed here ... --> <autoPay> boolean </autoPay> <charityId> string </charityId> <compatibility> string </compatibility> <condition> Condition <conditionDisplayName> string </conditionDisplayName> <conditionId> int </conditionId> </condition> <country> token </country> <discountPriceInfo> DiscountPriceInfo </discountPriceInfo> <distance unit="string"> Distance (double) </distance> <eBayPlusEnabled> boolean </eBayPlusEnabled> <eekStatus> string </eekStatus> <!-- ... more eekStatus values allowed here ... --> <galleryInfoContainer> GalleryInfoContainer <galleryURL gallerySize="GallerySizeEnum"> GalleryURL (anyURI) </galleryURL> <!-- ... more galleryURL values allowed here ... --> </galleryInfoContainer> <galleryPlusPictureURL> anyURI </galleryPlusPictureURL> <!-- ... more galleryPlusPictureURL values allowed here ... --> <galleryURL> anyURI </galleryURL> <globalId> token </globalId> <itemId> string </itemId> <listingInfo> ListingInfo <bestOfferEnabled> boolean </bestOfferEnabled> <buyItNowAvailable> boolean </buyItNowAvailable> <buyItNowPrice currencyId="string"> Amount (double) </buyItNowPrice> <convertedBuyItNowPrice currencyId="string"> Amount (double) </convertedBuyItNowPrice> <endTime> dateTime </endTime> <gift> boolean </gift> <listingType> token </listingType> <startTime> dateTime </startTime> <watchCount> int </watchCount> </listingInfo> <location> string </location> <paymentMethod> token </paymentMethod> <!-- ... more paymentMethod values allowed here ... --> <pictureURLLarge> anyURI </pictureURLLarge> <pictureURLSuperSize> anyURI </pictureURLSuperSize> <postalCode> string </postalCode> <primaryCategory> Category <categoryId> string </categoryId> <categoryName> string </categoryName> </primaryCategory> <productId> ProductId (string) </productId> <returnsAccepted> boolean </returnsAccepted> <secondaryCategory> Category <categoryId> string </categoryId> <categoryName> string </categoryName> </secondaryCategory> <sellerInfo> SellerInfo <feedbackRatingStar> token </feedbackRatingStar> <feedbackScore> long </feedbackScore> <positiveFeedbackPercent> double </positiveFeedbackPercent> <sellerUserName> string </sellerUserName> <topRatedSeller> boolean </topRatedSeller> </sellerInfo> <sellingStatus> SellingStatus <bidCount> int </bidCount> <convertedCurrentPrice currencyId="string"> Amount (double) </convertedCurrentPrice> <currentPrice currencyId="string"> Amount (double) </currentPrice> <sellingState> token </sellingState> <timeLeft> duration </timeLeft> </sellingStatus> <shippingInfo> ShippingInfo <expeditedShipping> boolean </expeditedShipping> <handlingTime> int </handlingTime> <oneDayShippingAvailable> boolean </oneDayShippingAvailable> <shippingServiceCost currencyId="string"> Amount (double) </shippingServiceCost> <shippingType> token </shippingType> <shipToLocations> string </shipToLocations> <!-- ... more shipToLocations values allowed here ... --> </shippingInfo> <storeInfo> Storefront <storeName> string </storeName> <storeURL> anyURI </storeURL> </storeInfo> <subtitle> string </subtitle> <title> string </title> <topRatedListing> boolean </topRatedListing> <unitPrice> UnitPriceInfo </unitPrice> <viewItemURL> anyURI </viewItemURL> </item> <!-- ... more item nodes allowed here ... --> </searchResult> <timestamp> dateTime </timestamp> <version> string </version> </findItemsAdvancedResponse>
Return Value | Type | Occurrence | Meaning |
---|
Call-specific Output Fields [Jump to standard fields] |
aspectHistogramContainer | AspectHistogramContainer | Conditionally |
Response container for aspect histograms.
outputSelector: AspectHistogram |
aspectHistogramContainer .aspect |
Aspect | Conditionally,
repeatable: [1..*] |
A characteristic of an item in a domain. For example, "Optical Zoom", "Brand", and "Megapixels" could be aspects of the Digital Cameras domain. Aspects are well-known, standardized characteristics of a domain, and they vary from domain to domain (the aspects of "Men's Shoes" are different from those of "Digital Cameras"). A search request on the eBay site will often display aspects and their respective aspect values on the left-had side of a query response. Aspects are extracted from item listing properties (such as item titles and subtitles), and represent the characteristics of active items. Values returned in the Aspect container can be used as inputs to the aspectFilter fields in a query to distill the items returned by the query. eBay generates aspects dynamically from the items currently listed; aspects provide a view into what is currently available on eBay. Because of this, aspect values returned one day cannot be guaranteed to be valid the next day. The following graphic shows how eBay might return a set of aspects for the Digital Cameras domain. In this graphic, "Product Type", "Brand", and "Megapixels" are aspects, and "Point & Shoot", "Canon", and "12.0 to 12.9 MP" are aspect values. Histogram values (item counts) are shown for each aspect value. outputSelector: AspectHistogram |
aspectHistogramContainer .aspect [ attribute name ] |
string | Conditionally |
A characteristic of an item in a domain. For example, "Optical Zoom", "Brand", and "Megapixels" could be aspects of the Digital Cameras domain. Aspects are well-known, standardized characteristics of a domain, and they vary from domain to domain (the aspects of "Men's Shoes" are different from those of "Digital Cameras"). A search request on the eBay site will often display aspects and their respective aspect values on the left-had side of a query response. Aspects are extracted from item listing properties (such as item titles and subtitles), and represent the characteristics of active items. Values returned in the Aspect container can be used as inputs to the aspectFilter fields in a query to distill the items returned by the query. eBay generates aspects dynamically from the items currently listed; aspects provide a view into what is currently available on eBay. Because of this, aspect values returned one day cannot be guaranteed to be valid the next day. The following graphic shows how eBay might return a set of aspects for the Digital Cameras domain. In this graphic, "Product Type", "Brand", and "Megapixels" are aspects, and "Point & Shoot", "Canon", and "12.0 to 12.9 MP" are aspect values. Histogram values (item counts) are shown for each aspect value. |
aspectHistogramContainer .aspect.valueHistogram |
AspectValueHistogram | Conditionally,
repeatable: [0..*] |
Container that returns the name of the respective aspect value and the histogram (the number of available items) that share that item characteristic. This value is not returned if there are no matching aspects for the associated domain. outputSelector: AspectHistogram |
aspectHistogramContainer .aspect.valueHistogram [ attribute valueName ] |
string | Conditionally |
Container that returns the name of the respective aspect value and the histogram (the number of available items) that share that item characteristic. This value is not returned if there are no matching aspects for the associated domain. |
aspectHistogramContainer .aspect.valueHistogram.count |
long | Conditionally |
Number of items that share the characteristic the respective aspect value.
outputSelector: AspectHistogram |
aspectHistogramContainer .domainDisplayName |
token | Conditionally |
A buy-side group of items, for example "Shoes." Domains are extracted from item listing properties, such as the title, descriptions, and so on.
outputSelector: AspectHistogram |
aspectHistogramContainer .domainName |
string | Conditionally |
A buy-side group of items that share aspects, but not necessarily an eBay category. For example "Women's Dresses" or "Digital Cameras" could be domains. You can use a domainName to label a set of aspects that you display. Domains are extracted from item listing properties (such as item titles and subtitles). outputSelector: AspectHistogram |
categoryHistogramContainer | CategoryHistogramContainer | Conditionally |
Response container for category histograms. Only returned when one or more category histograms are returned. A category histogram is not returned if there are no matching items or if the search is restricted to a single leaf category. Note: The category IDs returned for items in search results are for the leaf categories in which the items are listed. If you use these category IDs as input, the response will not return a category histogram. Note: When searching the eBay Motors site, category histograms may not be available for some parent categories. In these cases, aspect histograms should be used to refine search results. This behavior is consistent with eBay Motors site search behavior. outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram |
CategoryHistogram (Category) | Conditionally,
repeatable: [0..*] |
Statistical (item count) information on the categories that contain items that match the search criteria or specified category or categories. A category histogram contains information for up to 10 child categories. Search result total entries may not necessarily match the sum of category histogram item counts. For search calls, the item count shows the distribution of matching items across each of the returned categories. A category histogram is not returned if there are no matching items or if the search is restricted to a single leaf category. For getHistograms, the category histogram contains the total item count for the specified category and item counts for the child categories containing the most item listings. A category histogram is not returned if the specified category is a leaf category. For categories associated with specific items, review the individual item containers returned in the search result. outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram.categoryId |
string | Conditionally |
The unique ID of a category on the specified eBay site. Max length: 10. outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram .categoryName |
string | Conditionally |
Display name of a category as it appears on the eBay Web site. Max length: 30. outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram .childCategoryHistogram |
CategoryHistogram (Category) | Conditionally,
repeatable: [0..10] |
Container for histogram information pertaining to a child of the category specified in the request. Histograms return data on up to 10 children. Histograms are only a single level deep. That is, a given category histogram contains only immediate children.
outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram .childCategoryHistogram .categoryId |
string | Conditionally |
The unique ID of a category on the specified eBay site. Max length: 10. outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram .childCategoryHistogram .categoryName |
string | Conditionally |
Display name of a category as it appears on the eBay Web site. Max length: 30. outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram .childCategoryHistogram .childCategoryHistogram |
CategoryHistogram (Category) | Conditionally,
repeatable: [0..10] |
Container for histogram information pertaining to a child of the category specified in the request. Histograms return data on up to 10 children. Histograms are only a single level deep. That is, a given category histogram contains only immediate children.
Recursion: Whatever the depth of data returned, the deepest level does not include childCategoryHistogram. outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram .childCategoryHistogram.count |
long | Conditionally |
The total number of items in the associated category that match the search criteria.
outputSelector: CategoryHistogram |
categoryHistogramContainer .categoryHistogram.count |
long | Conditionally |
The total number of items in the associated category that match the search criteria.
outputSelector: CategoryHistogram |
conditionHistogramContainer | ConditionHistogramContainer | Conditionally |
Response container for condition histograms. Not returned when Condition is specified in itemFilter. That is, only returned when you have not yet narrowed your search based on specific conditions. Only returned when you search the eBay US site (as of February 2011). International items in US search results are included in the histogram counts. outputSelector: ConditionHistogram |
conditionHistogramContainer .conditionHistogram |
ConditionHistogram | Conditionally,
repeatable: [0..*] |
Statistical (item count) information on the condition of items that match the search criteria (or specified category). For example, the number of brand new items that match the query. Each conditionHistogram specifies one condition and the number of matching items found. The list of all conditionHistogram containers returned represents the union of all conditions that were found in the item results. For example, if items were found in different categories, and if those categories support different sets of item conditions, then all those conditions are returned in the list, regardless of category. If multiple items use the same condition ID, but some items use different display names for that condition, the histogram shows the site's default display name for that condition. This means that the condition name in a histogram may not always exactly match the condition names on the counted items. outputSelector: ConditionHistogram |
conditionHistogramContainer .conditionHistogram.condition |
Condition | Conditionally |
The name and unique ID of the item condition for which the count is being displayed.
outputSelector: ConditionHistogram |
conditionHistogramContainer .conditionHistogram.condition .conditionDisplayName |
string | Conditionally |
The human-readable label for the item condition. Display names are localized for the site on which they're listed (not necessarily the site on which they're viewed). In item results, this is only returned when the seller specified the item's condition using a structured format eBay recognizes. When conditionId is also present: Most categories use the same display name for the same condition ID. Some categories may override the display name based on buyer expectations for items in the category. For example, condition ID 1000 could be called "New" in one category and "New with tags" in another. If an item is listed in two categories, the primary category controls the display name. Behind the scenes, eBay's search engine uses the ID (not the display name) to determine whether items are new, used, or refurbished. So, if you need to normalize the conditions across categories (such as to group items by condition), it may be easier to use the ID and then show the varying display names for reference. In condition histograms: If you search against a specific category and some items match based on their secondary category, the histogram only shows the display name if the secondary category supports the condition. (Condition IDs and names are dependent on the primary category.) However, the histogram shows the condition ID and item counts. This should only occur in a very small percent of results. As a workaround, you can fill in the missing name based on the "Item Condition IDs and Names" (link below) or based on the condition from an applicable item in the results. For example, suppose a seller lists a concert T-shirt in a clothing category with the condition "New without tags" (1500), and also in a music accessories secondary category (where "New without tags" isn't a recognized condition). If you specify the music accessories category in your request, the condition ID (1500) is shown in the histogram, but not the display name. However, the display name is shown within the items. Max length: 50. outputSelector: none (not controlled by outputSelector) See Item Condition IDs and Names for a list of display names and the typical meaning of each condition. |
conditionHistogramContainer .conditionHistogram.condition .conditionId |
int | Conditionally |
The numeric ID (e.g., 1000) for the item condition. In item results, this is only returned when the seller listed the item with a condition ID. Some categories don't support or require condition IDs (e.g., most Antiques categories don't). If you Condition as a itemFilter, the response returns items with the correctly matching condition(s), even if conditionId is not returned. outputSelector: none (not controlled by outputSelector) See Item Condition IDs and Names for a list of display names and the typical meaning of each condition. |
conditionHistogramContainer .conditionHistogram.count |
int | Conditionally |
The number of items found that match the condition. Only counts items where the seller specified the condition by using item.conditionId.
outputSelector: ConditionHistogram |
Standard Output Fields |
ack | AckValue | Always |
Indicates whether or not errors or warnings were generated during the processing of the request.
Applicable values: Code so that your app gracefully handles any future changes to this list. outputSelector: none (not controlled by outputSelector) |
errorMessage | ErrorMessage | Conditionally |
Description of an error or warning that occurred when eBay processed the request. Not returned if the ack value is Success.
outputSelector: none (not controlled by outputSelector) |
errorMessage.error | ErrorData | Conditionally,
repeatable: [0..*] |
Details about a single error.
outputSelector: none (not controlled by outputSelector) |
errorMessage.error.category | ErrorCategory | Conditionally |
There are three categories of errors: request errors, application errors, and system errors.
Applicable values: Code so that your app gracefully handles any future changes to this list. outputSelector: none (not controlled by outputSelector) |
errorMessage.error.domain | string | Conditionally |
Name of the domain in which the error occurred.
outputSelector: none (not controlled by outputSelector) |
errorMessage.error.errorId | long | 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.
outputSelector: none (not controlled by outputSelector) |
errorMessage.error.exceptionId | token | Conditionally |
Unique identifier for an exception associated with an error.
outputSelector: none (not controlled by outputSelector) |
errorMessage.error.message | string | Conditionally |
A detailed description of the condition that caused in the error.
outputSelector: none (not controlled by outputSelector) |
errorMessage.error.parameter | ErrorParameter (string) | Conditionally,
repeatable: [0..*] |
Various 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.
outputSelector: none (not controlled by outputSelector) |
errorMessage.error.parameter [ attribute name ] |
string | Conditionally | Various 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. |
errorMessage.error.severity | ErrorSeverity | Conditionally |
Indicates whether the reported problem is fatal (an error) or is less- severe (a warning). Review the error message details for information on the cause. If the request fails and the application is the source of the error (for example, a required element is missing), update the application before you retry the request. If the problem is due to incorrect user data, 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, re-send the request to eBay. If the source of the problem is on eBay's side, you can retry the request a reasonable number of times (eBay recommends you try the request twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, you can resend the request in its original form. If a warning occurs, warning information is returned in addition to the business data. Normally, you do not need to resend the request (as the original request was successful). However, depending on the cause of the warning, you might need to contact the end user, or eBay, to effect a long term solution to the problem. Applicable values: Code so that your app gracefully handles any future changes to this list. outputSelector: none (not controlled by outputSelector) |
errorMessage.error.subdomain | string | Conditionally |
Name of the subdomain in which the error occurred.
outputSelector: none (not controlled by outputSelector) |
itemSearchURL | anyURI | Always |
A URL to view the search results on the eBay web site. The search results on the web site will use the same pagination as the API search results. Note: eBay URLs returned in fields, such as viewItemURL, are subject to syntax and other changes without notice. To avoid problems in your application when eBay alters the URL format, we advise you to avoid parsing eBay URLs programmatically. We strive to ensure that other fields in the response contain all the information that is encoded in the URL, and more. outputSelector: none (not controlled by outputSelector) |
paginationOutput | PaginationOutput | Conditionally |
Indicates the pagination of the result set. Child elements indicate the page number that is returned, the maximum number of item listings to return per page, total number of pages that can be returned, and the total number of listings that match the search criteria.
outputSelector: none (not controlled by outputSelector) |
paginationOutput .entriesPerPage |
int | Conditionally |
The maximum number of items that can be returned in the response. This number is always equal to the value input for paginationInput.entriesPerPage. The end of the result set has been reached if the number specified for entriesPerPage is greater than the number of items found on the specified pageNumber. In this case, there will be fewer items returned than the number specified in entriesPerPage. This can be determined by comparing the entriesPerPage value with the value returned in the count attribute for the searchResult field. Min: 1. Max: 100. outputSelector: none (not controlled by outputSelector) |
paginationOutput.pageNumber | int | Conditionally |
The subset of item data returned in the current response. Search results are divided into sets, or "pages," of item data. The number of pages is equal to the total number of items matching the search criteria divided by the value specified for entriesPerPage in the request. The response for a request contains one "page" of item data. This returned value indicates the page number of item data returned (a subset of the complete result set). If this field contains 1, the response contains the first page of item data (the default). If the value returned in totalEntries is less than the value for entriesPerPage, pageNumber returns 1 and the response contains the entire result set. The value of pageNumber is normally equal to the value input for paginationInput.pageNumber. However, if the number input for pageNumber is greater than the total possible pages of output, eBay returns the last page of item data in the result set, and the value for pageNumber is set to the respective (last) page number. Min: 0. Max: 100. outputSelector: none (not controlled by outputSelector) |
paginationOutput.totalEntries | int | Conditionally |
The total number of items found that match the search criteria in your request. Depending on the input value for entriesPerPage, the response might include only a portion (a page) of the entire result set. A value of "0" is returned if eBay does not find any items that match the search criteria. Min: 0. outputSelector: none (not controlled by outputSelector) |
paginationOutput.totalPages | int | Conditionally |
The total number of pages of data that could be returned by repeated search requests. Note that if you modify the value of inputPagination.entriesPerPage in a request, the value output for totalPages will change. A value of "0" is returned if eBay does not find any items that match the search criteria. Min: 0. outputSelector: none (not controlled by outputSelector) |
searchResult | SearchResult | Always |
Container for the item listings that matched the search criteria. The data for each item is returned in individual containers, if any matches were found.
outputSelector: none (not controlled by outputSelector) |
searchResult [ attribute count ] |
int | Always | Container for the item listings that matched the search criteria. The data for each item is returned in individual containers, if any matches were found. |
searchResult.item | SearchItem | Always,
repeatable: [1..*] |
Container for the data of a single item that matches the search criteria.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.attribute | ItemAttribute | Conditionally,
repeatable: [0..*] |
item attribute
outputSelector: none (not controlled by outputSelector) |
searchResult.item.autoPay | boolean | Always |
If true, the seller requires immediate payment for the item. If false (or not specified), immediate payment is not requested. Immediate payment does not apply to classified listings nor to auction listings that end with a winning bidder. Note: The value of the autoPay flag indicates the seller's stated preference only. It does not indicate whether the listing is still a candidate for purchase via immediate payment. For example, if a listing receives bids and no longer qualifies for immediate payment, the value of the autoPay flag does not change. outputSelector: none (not controlled by outputSelector) |
searchResult.item.charityId | string | Conditionally |
A unique identification number assigned by eBay to a registered non-profit charity organization.
outputSelector: none (not controlled by outputSelector) See GetCharities in the Trading API for information to retrieve details on a specific charity. |
searchResult.item .compatibility |
string | Conditionally |
Starting in March 2010, parts compatibility will be supported in limited Parts & Accessories categories for eBay Motors in the Production environment. For these categories, a compatible application will always be a vehicle, which is specified by a combination of make, model, and year. Optionally, trim and engine data may also be specifed for a vehicle. This field returns terms from the keywords in the request that match values in one of the item's compatible applications (vehicles). If the keywords match more than one compatible application for an item, the field returns "Two or more of your vehicles" to indicate multiple matches. For example, keyword queries that contain vehicle details, such as make and model (e.g., Honda Accord), in addition to keywords for the part or accessory, will search through structured parts compatibility information for matching listings. If an item has a 2007 Honda Accord (any trim or engine) specified as a compatible application, and the item matches the part or accessory terms in the query, this field will return the matching terms from the query (i.e., Honda Accord). Parts compatibility is an eBay feature that uses structured data to associate compatible assemblies with parts and accessories listed on eBay. For example, parts compatibility enables sellers to specify accurately and comprehensively the vehicles on which a side mirror or a rim fit. Parts compatibility improves search relevancy and frees up item titles and descriptions for more useful descriptions of the part. outputSelector: none (not controlled by outputSelector) |
searchResult.item.condition | Condition | Conditionally |
This container shows the name and unique ID of the item's condition. This container will generally get returned unless the item is in an eBay category that does not require an item condition. Supported item conditions vary by category.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.condition .conditionDisplayName |
string | Conditionally |
The human-readable label for the item condition. Display names are localized for the site on which they're listed (not necessarily the site on which they're viewed). In item results, this is only returned when the seller specified the item's condition using a structured format eBay recognizes. When conditionId is also present: Most categories use the same display name for the same condition ID. Some categories may override the display name based on buyer expectations for items in the category. For example, condition ID 1000 could be called "New" in one category and "New with tags" in another. If an item is listed in two categories, the primary category controls the display name. Behind the scenes, eBay's search engine uses the ID (not the display name) to determine whether items are new, used, or refurbished. So, if you need to normalize the conditions across categories (such as to group items by condition), it may be easier to use the ID and then show the varying display names for reference. In condition histograms: If you search against a specific category and some items match based on their secondary category, the histogram only shows the display name if the secondary category supports the condition. (Condition IDs and names are dependent on the primary category.) However, the histogram shows the condition ID and item counts. This should only occur in a very small percent of results. As a workaround, you can fill in the missing name based on the "Item Condition IDs and Names" (link below) or based on the condition from an applicable item in the results. For example, suppose a seller lists a concert T-shirt in a clothing category with the condition "New without tags" (1500), and also in a music accessories secondary category (where "New without tags" isn't a recognized condition). If you specify the music accessories category in your request, the condition ID (1500) is shown in the histogram, but not the display name. However, the display name is shown within the items. Max length: 50. outputSelector: none (not controlled by outputSelector) See Item Condition IDs and Names for a list of display names and the typical meaning of each condition. |
searchResult.item.condition .conditionId |
int | Conditionally |
The numeric ID (e.g., 1000) for the item condition. In item results, this is only returned when the seller listed the item with a condition ID. Some categories don't support or require condition IDs (e.g., most Antiques categories don't). If you Condition as a itemFilter, the response returns items with the correctly matching condition(s), even if conditionId is not returned. outputSelector: none (not controlled by outputSelector) See Item Condition IDs and Names for a list of display names and the typical meaning of each condition. |
searchResult.item.country | token | Conditionally |
Two-letter ISO 3166 country code to indicate the country where the item is located (e.g., "US" for the United States or "GB" for the United Kingdom).
outputSelector: none (not controlled by outputSelector) See English country names and code elements for country names and corresponding ISO 3166 codes. |
searchResult.item .discountPriceInfo |
DiscountPriceInfo | Conditionally |
The format type of the listing, such as online auction, fixed price, or advertisement.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.distance | Distance (double) | Conditionally |
The distance that the item is from the buyer, calculated using buyerPostalCode. The unit for distance varies by site, and is either miles or kilometers. If the country whose site you are searching uses kilometers to measure distance (for example, India/EBAY-IN), the unit is kilometers. If the site is either the US or UK, the distance unit is miles. This value is only returned for distance-based searches. You must specify a buyerPostalCode and either sort by Distance, or use a combination of the MaxDistance LocalSearch itemFilters. outputSelector: none (not controlled by outputSelector) |
searchResult.item.distance [ attribute unit ] |
string | Conditionally |
The distance that the item is from the buyer, calculated using buyerPostalCode. The unit for distance varies by site, and is either miles or kilometers. If the country whose site you are searching uses kilometers to measure distance (for example, India/EBAY-IN), the unit is kilometers. If the site is either the US or UK, the distance unit is miles. This value is only returned for distance-based searches. You must specify a buyerPostalCode and either sort by Distance, or use a combination of the MaxDistance LocalSearch itemFilters. |
searchResult.item .eBayPlusEnabled |
boolean | Conditionally |
Indicates whether the item is ebayPlus item. This field is returned for the following sites only: DE (EBAY-DE), AU (EBAY-AU)
outputSelector: none (not controlled by outputSelector) |
searchResult.item.eekStatus | string | Conditionally,
repeatable: [0..*] |
eek status of the item
outputSelector: none (not controlled by outputSelector) |
searchResult.item .galleryInfoContainer |
GalleryInfoContainer | Conditionally |
Contains three URLs for item thumbnail images in standard sizes. Not returned if the item has no images. That is, if the item was not listed using a product identifier and the seller has not uploaded images, the container will not be returned, even when the outputSelector is set to GalleryInfo.
outputSelector: GalleryInfo |
searchResult.item .galleryInfoContainer .galleryURL |
GalleryURL (anyURI) | Always,
repeatable: [1..3] |
URL for a single item image thumbnail of a specific size.
outputSelector: none (not controlled by outputSelector) |
searchResult.item .galleryInfoContainer .galleryURL [ attribute gallerySize ] |
GallerySizeEnum | Conditionally |
URL for a single item image thumbnail of a specific size. For a list of possible enumeration values, see GallerySizeEnum. |
searchResult.item .galleryPlusPictureURL |
anyURI | Conditionally,
repeatable: [0..*] |
URL for the Gallery Plus image. The size of Gallery Plus images (up to 500 pixels on the longest side) is bigger than the size of standard gallery images. In site search results, you can view the Gallery Plus image by hovering over or clicking the Enlarge link or magifying glass icon. This field is only returned when the seller has opted for the Gallery Plus option for the given item.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.galleryURL | anyURI | Conditionally |
URL for the Gallery thumbnail image. Returned only if the seller uploaded images for the item or the item was listed using a product identifier.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.globalId | token | Always |
The identifier for the site on which the item is listed. Returns a Global ID, which is a unique identifier that specifies the combination of the site, language, and territory. In other eBay APIs (such as the Shopping API), this value is know as the site ID.
outputSelector: none (not controlled by outputSelector) See Global ID Values for a list of possible enumeration values and how they map to eBay sites. |
searchResult.item.itemId | string | Always |
The ID that uniquely identifies the item listing. eBay generates this ID when an item is listed. ID values are unique across all eBay sites. Max length: 19 (normally, item IDs are 9 to 12 digits in length) . outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo | ListingInfo | Conditionally |
The format type of the listing, such as online auction, fixed price, or advertisement.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .bestOfferEnabled |
boolean | Conditionally |
Shows whether or not the seller will accept a best offer for the associated item. Best Offer allows a buyer to make a lower-priced binding offer on a fixed price item. Buyers cannot see how many offers have been made (only the seller can see this information). To make a best offer on a listing, use the eBay Web site.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .buyItNowAvailable |
boolean | Conditionally |
Applies only to auction listings that were listed with a Buy It Now price. Buy It Now lets a user purchase the item at a fixed price, effectively ending the auction. On most sites, the Buy It Now option is removed (and this value returns false) once a valid bid is made on the associated item (a valid bid could be a bid above the reserve price). buyItNowAvailable will return "false" if the listing type is anything but "AuctionWithBIN". Please ignore buyItNowAvailable for fixed-price listings. outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .buyItNowPrice |
Amount (double) | Conditionally |
The Buy It Now Price of the item (if any), in the currency of the site on which the item was listed. You can use this field to determine if the item was originally listed with Buy It Now, even if the Buy It Now option is no longer available for the item. For Basic Fixed-Price (FixedPrice), Store Inventory (StoreInventory), Ad Format (AdFormat), and Classified Ad (Classified) listings, currentPrice is the current fixed price. Only returned if an item was listed with Buy It Now. outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .buyItNowPrice [ attribute currencyId ] |
string | Always |
The Buy It Now Price of the item (if any), in the currency of the site on which the item was listed. You can use this field to determine if the item was originally listed with Buy It Now, even if the Buy It Now option is no longer available for the item. For Basic Fixed-Price (FixedPrice), Store Inventory (StoreInventory), Ad Format (AdFormat), and Classified Ad (Classified) listings, currentPrice is the current fixed price. Only returned if an item was listed with Buy It Now. |
searchResult.item.listingInfo .convertedBuyItNowPrice |
Amount (double) | Conditionally |
The listing's Buy It Now Price (if any), converted into the currency of the site to which you sent your search request. For active items, refresh this value every 24 hours to pick up changes in conversion rates (if this value has been converted). Price fields are returned as doubles, not necessarily in the traditional monetary format of the site's country. For example, a US Dollar value might be returned as 3.880001 instead of 3.88. Only returned if an item was listed with Buy It Now. outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .convertedBuyItNowPrice [ attribute currencyId ] |
string | Always |
The listing's Buy It Now Price (if any), converted into the currency of the site to which you sent your search request. For active items, refresh this value every 24 hours to pick up changes in conversion rates (if this value has been converted). Price fields are returned as doubles, not necessarily in the traditional monetary format of the site's country. For example, a US Dollar value might be returned as 3.880001 instead of 3.88. Only returned if an item was listed with Buy It Now. |
searchResult.item.listingInfo .endTime |
dateTime | Conditionally |
Time stamp specifying when the listing is scheduled to end, or the actual end time if the item listing has ended. This value is returned in GMT, the ISO 8601 date and time format (YYYY-MM- DDTHH:MM:SS.SSSZ). See the "dateTime" type for information about the time format, and for details on converting to and from the GMT time zone. Note: For items that are "Good Till Canceled," this value is 5 minutes later than the actual end time of the item. This difference in time is intended to facilitate the renewal of these items' end times (which occurs every 30 days). outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .gift |
boolean | Conditionally |
If true, a generic gift icon displays next the listing's title in search and browse pages.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .listingType |
token | Conditionally |
The format of the listing, such as online auction, fixed price, or advertisement.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .startTime |
dateTime | Conditionally |
Time stamp that eBay recorded as the moment the listing was made available. This value is returned in GMT, the ISO 8601 date and time format (YYYY-MM- DDTHH:MM:SS.SSSZ). See the "dateTime" type for information about the time format, and for details on converting to and from the GMT time zone. Note that it is possible for startTime to be different from the value returned by GetSingleItem.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.listingInfo .watchCount |
int | Conditionally |
The number of users that have added the item to their watch list. Min: 0. outputSelector: none (not controlled by outputSelector) |
searchResult.item.location | string | Conditionally |
Physical location of the item, as specified by the seller. This gives a general indication from where the item will be shipped (or delivered).
outputSelector: none (not controlled by outputSelector) |
searchResult.item .paymentMethod |
token | Conditionally,
repeatable: [0..*] |
Identifies the payment method (or methods) available to the buyer to purchase the item.
outputSelector: none (not controlled by outputSelector) See BuyerPaymentMethodCodeType in the Shopping API for a complete list of possible paymentMethod response values. |
searchResult.item .pictureURLLarge |
anyURI | Conditionally |
URL for item's picture url with size 400x400
outputSelector: none (not controlled by outputSelector) |
searchResult.item .pictureURLSuperSize |
anyURI | Conditionally |
URL for item's picture url with size 800x800
outputSelector: none (not controlled by outputSelector) |
searchResult.item.postalCode | string | Conditionally |
The postal code where the listed item is located. This field is returned only if a postal code has been specified by the seller. Sellers set a postal code (or zip code in US) for items when they are listed. The postal code is used for calculating proximity searches. It is anonymized when returned via the API. eBay proximity and local search behavior can use the combination of buyerPostalCode and postalCode values. outputSelector: none (not controlled by outputSelector) |
searchResult.item .primaryCategory |
Category | Always |
Details about the first (or only) category in which the item is listed. Note that items can be listed in more than a single category.
outputSelector: none (not controlled by outputSelector) |
searchResult.item .primaryCategory.categoryId |
string | Always |
The unique ID of a category on the specified eBay site. Max length: 10. outputSelector: none (not controlled by outputSelector) |
searchResult.item .primaryCategory.categoryName |
string | Always |
Display name of a category as it appears on the eBay Web site. Max length: 30. outputSelector: none (not controlled by outputSelector) |
searchResult.item.productId | ProductId (string) | Conditionally |
Unique identifier for the eBay catalog product with which the item was listed. An eBay catalog product consists of pre-filled Item Specifics, additional descriptive information, plus a stock photo (if available). These product details are used to pre-fill item information, which is used to describe the item and can also help surface the item in searches. eBay supports the following types of product ID types: ISBN, UPC, EAN, and ReferenceID (ePID, also known as an eBay Product Reference ID). ReferenceID values are returned when available. A UPC, ISBN, or EAN product identifier will be returned only when a ReferenceID is not available. This productId value can be used as input with findItemsByProduct to retrieve items that were listed with the specified eBay catalog product. This field is only returned when a product was used to list the item. outputSelector: none (not controlled by outputSelector) |
searchResult.item .returnsAccepted |
boolean | Conditionally |
This is set to true if the seller accepts return of the item.
outputSelector: none (not controlled by outputSelector) |
searchResult.item .secondaryCategory |
Category | Conditionally |
Details about the second category in which the item is listed. This element is not returned if the seller did not specify a secondary category.
outputSelector: none (not controlled by outputSelector) |
searchResult.item .secondaryCategory.categoryId |
string | Conditionally |
The unique ID of a category on the specified eBay site. Max length: 10. outputSelector: none (not controlled by outputSelector) |
searchResult.item .secondaryCategory .categoryName |
string | Conditionally |
Display name of a category as it appears on the eBay Web site. Max length: 30. outputSelector: none (not controlled by outputSelector) |
searchResult.item.sellerInfo | SellerInfo | Conditionally |
Information about the item's seller. Only returned if SellerInfo is specified in the outputSelector field in the request.
outputSelector: SellerInfo |
searchResult.item.sellerInfo .feedbackRatingStar |
token | Conditionally |
Visual indicator of user's feedback score.
outputSelector: SellerInfo |
searchResult.item.sellerInfo .feedbackScore |
long | Conditionally |
The aggregate feedback score of the seller. A seller's feedback score is their net positive feedback minus their net negative feedback. Feedback scores are a quantitative expression of the desirability of dealing with a seller in a transaction.
outputSelector: SellerInfo |
searchResult.item.sellerInfo .positiveFeedbackPercent |
double | Conditionally |
The percentage value of a user's positive feedback (their positive feedbackScore divided by their total positive plus negative feedback).
outputSelector: SellerInfo |
searchResult.item.sellerInfo .sellerUserName |
string | Conditionally |
The seller's eBay user name; a unique value.
outputSelector: SellerInfo |
searchResult.item.sellerInfo .topRatedSeller |
boolean | Conditionally |
Indicates whether the seller of the item is top-rated. A top-rated seller:
This field is returned for the following sites only: US (EBAY-US), Motors (EBAY-MOTOR), DE (EBAY-DE), AT (EBAY-AT), and CH (EBAY-CH). outputSelector: SellerInfo |
searchResult.item .sellingStatus |
SellingStatus | Conditionally |
Specifies the item's selling status with regards to eBay's processing workflow.
outputSelector: none (not controlled by outputSelector) |
searchResult.item .sellingStatus.bidCount |
int | Conditionally |
The number of bids that have been placed on the item. Min: 0. outputSelector: none (not controlled by outputSelector) |
searchResult.item .sellingStatus .convertedCurrentPrice |
Amount (double) | Conditionally |
The listing's current price converted to the currency of the site specified in the find request (globalId).
outputSelector: none (not controlled by outputSelector) |
searchResult.item .sellingStatus .convertedCurrentPrice [ attribute currencyId ] |
string | Always | The listing's current price converted to the currency of the site specified in the find request (globalId). |
searchResult.item .sellingStatus.currentPrice |
Amount (double) | Conditionally |
The current price of the item given in the currency of the site on which the item is listed. That is, currentPrice is returned in the original listing currency. For competitive-bid item listings, currentPrice is the current minimum bid price if the listing has no bids, or the current high bid if the listing has bids. A Buy It Now price has no effect on currentPrice. For Basic Fixed-Price (FixedPrice), Store Inventory (StoreInventory), Ad Format (AdFormat), and Classified Ad (Classified) listings, currentPrice is the current fixed price. outputSelector: none (not controlled by outputSelector) |
searchResult.item .sellingStatus.currentPrice [ attribute currencyId ] |
string | Always |
The current price of the item given in the currency of the site on which the item is listed. That is, currentPrice is returned in the original listing currency. For competitive-bid item listings, currentPrice is the current minimum bid price if the listing has no bids, or the current high bid if the listing has bids. A Buy It Now price has no effect on currentPrice. For Basic Fixed-Price (FixedPrice), Store Inventory (StoreInventory), Ad Format (AdFormat), and Classified Ad (Classified) listings, currentPrice is the current fixed price. |
searchResult.item .sellingStatus.sellingState |
token | Conditionally |
Specifies the listing's status in eBay's processing workflow. If an item's EndTime is in the past, but there are no details about the buyer or high bidder (and the user is not anonymous), you can use sellingState information to determine whether eBay has finished processing the listing.
outputSelector: none (not controlled by outputSelector) |
searchResult.item .sellingStatus.timeLeft |
duration | Conditionally |
Time left before the listing ends. The duration is represented in the ISO 8601 duration format (PnYnMnDTnHnMnS). For listings that have ended, the time left is PT0S (zero seconds). See the "duration" type for information about this time format.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.shippingInfo | ShippingInfo | Conditionally |
Container for data about a listing's shipping details.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.shippingInfo .expeditedShipping |
boolean | Conditionally |
This is returned set to true if expedited shipping is available for the item.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.shippingInfo .handlingTime |
int | Conditionally |
The number of days it will take the seller to ship this item.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.shippingInfo .oneDayShippingAvailable |
boolean | Conditionally |
This is returned set to true if one-day shipping is available for the item.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.shippingInfo .shippingServiceCost |
Amount (double) | Conditionally |
The basic shipping cost of the item. This reflects the domestic shipping cost or the international shipping costs, depending on which applies (that is, whether the bidder/buyer is in the same country as the listing site of the item).
outputSelector: none (not controlled by outputSelector) |
searchResult.item.shippingInfo .shippingServiceCost [ attribute currencyId ] |
string | Always | The basic shipping cost of the item. This reflects the domestic shipping cost or the international shipping costs, depending on which applies (that is, whether the bidder/buyer is in the same country as the listing site of the item). |
searchResult.item.shippingInfo .shippingType |
token | Conditionally |
The shipping method that was used for determining the cost of shipping. For example: flat rate, calculated, or free. The seller specifies the available shipping services when they list the item.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.shippingInfo .shipToLocations |
string | Conditionally,
repeatable: [0..*] |
An international location or region to which the seller is willing to ship the item. Only returned when the seller has specifically identified locations where she is willing to ship the given item. specified.
outputSelector: none (not controlled by outputSelector) See shipToLocations for a complete list of shipping locations. |
searchResult.item.storeInfo | Storefront | Conditionally |
Information about the eBay store in which the item is listed. Only returned if the item is listed in a store and StoreInfo is specified in the outputSelector field in the request.
outputSelector: StoreInfo |
searchResult.item.storeInfo .storeName |
string | Conditionally |
The name of the seller's eBay Store. Max length: 200. outputSelector: StoreInfo |
searchResult.item.storeInfo .storeURL |
anyURI | Conditionally |
The URL of the seller's eBay Store page.
outputSelector: StoreInfo |
searchResult.item.subtitle | string | Conditionally |
Subtitle of the item. Only returned if the seller included a subtitle for the listing.
outputSelector: none (not controlled by outputSelector) |
searchResult.item.title | string | Conditionally |
Name of the item as it appears in the listing title, or in search and browse results.
outputSelector: none (not controlled by outputSelector) |
searchResult.item .topRatedListing |
boolean | Conditionally |
Indicates whether the item is Top Rated Plus item. A top rated plus item:
|
searchResult.item.unitPrice | UnitPriceInfo | Conditionally |
Unit price information of the item
outputSelector: none (not controlled by outputSelector) |
searchResult.item.viewItemURL | anyURI | Conditionally |
The URL to view this specific listing on eBay. The returned URL is optimized to support natural search. That is, the URL is designed to make items on eBay easier to find via popular internet search engines. The URL includes the item title along with other optimizations. If you enabled affiliate tracking in the call, viewItemURL contains a string that includes affiliate tracking information. Note: eBay URLs returned in fields, such as viewItemURL, are subject to syntax and other changes without notice. To avoid problems in your application when eBay alters the URL format, we advise you to avoid parsing eBay URLs programmatically. We strive to ensure that other fields in the response contain all the information that is encoded in the URL, and more. outputSelector: none (not controlled by outputSelector) See eBay Partner Network for more information. |
timestamp | dateTime | Always |
This value represents the date and time when eBay processed the request. This value is returned in GMT, the ISO 8601 date and time format (YYYY- MM- DDTHH:MM:SS.SSSZ). See the "dateTime" type for information about the time format, and for details on converting to and from the GMT time zone.
outputSelector: none (not controlled by outputSelector) |
version | string | Always |
The release version that eBay used to process the request. Developer Technical Support may ask you for the version value if you work with them to troubleshoot issues. Note: The version in use is normally the latest release version, as specified in the release notes. Note that eBay releases the API to international sites about a week after the API version is released to the US site. outputSelector: none (not controlled by outputSelector) |
Input Output Samples Change History |
Detail Controls
DetailLevel
This call does not support varying Detail Levels. You do not need to pass DetailLevel in the request.
outputSelector
The outputSelector input field gives you control over which call-specific output fields may be returned from your queries. outputSelector 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 outputSelector.)
The table below details the fields that each outputSelector value controls. In addition, the table includes a none column that shows the fields that are not controlled by outputSelector settings. Note that some fields are returned only when certain conditions are met; see the associated field documentation for a clarification of these conditions.
Y | The field is always returned. |
(Y) | The field is conditionally returned. See the field documentation for clarification of conditions. |
Input Output Detail Controls Change History |
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:
- Basic ↓ - A minimal findItemsAdvanced call using a single keyword for the query.
- Basic with Fast Shipping ↓ - Builds on the Basic sample by returning only items that are offered with one day handling and one day shipping.
- Basic with Free Shipping ↓ - Builds on the Basic sample by returning only items that are offered with free shipping.
- Basic Filtered by Payment Method ↓ - Builds on the Basic sample by filtering the items returned based the payment method offered.
- Basic Filtered by the Seller's Feedback Score ↓ - Builds on the Basic sample by filtering the items returned based on the seller's feedback score.
- Category and Keyword with Description Search ↓ - Builds on the Basic sample by adding a specific category to search.
- Retrieving Aspect Histogram Information ↓ - Retrieves a set of items from the eBay category number 31388 (Digital Cameras). The call makes use of item filters, returning only items that are Used, Buy It Now items. Also returns an aspect histogram of the 31388 category.
- Retrieve All Active Listings for a Seller ↓ - This sample retrieves every active listing for the specified seller.
- Refining Results with Aspect Filters ↓ - This sample builds on the first sample by using aspect values to refine the results returned by a second findItemsAdvanced call. The response only includes items within a specified price range.
A minimal findItemsAdvanced call using a single keyword for the query.
Description
The buyer is looking for a Tolkien (Lord of the Rings) item as a gift.
Input
The single keyword "tolkien" is used for the findItemsAdvanced call. This simple call will select all the active items on eBay that have "tolkien" in the title. The response is limited to the first two items by the following setting: paginationInput.entriesPerPages=2
.
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD=true&
paginationInput.entriesPerPage=2&
keywords=tolkien
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <keywords>tolkien</keywords> <paginationInput> <entriesPerPage>2</entriesPerPage> </paginationInput> </findItemsAdvancedRequest>
Output
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedResponse xmlns:ms="https://www.ebay.com/marketplace/services" xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.11.0</version> <timestamp>2015-09-10T18:22:25.286Z</timestamp> <searchResult count="2"> <item> <itemId>2**********6</itemId> <title>The Children of Hurin by J. R. R. Tolkien Audiobook</title> <globalId>EBAY-US</globalId> <subtitle>2007 8 CDs Unabridged Very Good Used Condition</subtitle> <primaryCategory> <categoryId>29792</categoryId> <categoryName>Audiobooks</categoryName> </primaryCategory> <galleryURL> https://thumbs1.ebaystatic.com/pict/2**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/The-Children-of-Hurin-by-J-R-R-Tolkien- Audiobook_W0QQitemZ2**********6QQcmdZViewItemQQptZUS_Audiobooks?hash= item439a1205b6</viewItemURL> <productId type="ReferenceID">63875752</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>72***</postalCode> <location>Lonsdale,AR,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">11.45</currentPrice> <convertedCurrentPrice currencyId="USD">11.45</convertedCurrentPrice> <bidCount>2</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT1H6M6S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2015-09-07T19:28:31.000Z</startTime> <endTime>2015-09-10T19:28:31.000Z</endTime> <listingType>Auction</listingType> <gift>false</gift> </listingInfo> </item> <item> <itemId>2**********4</itemId> <title>The Legend of Sigurd and Gudrun by J. R. R. Tolkien NEW</title> <globalId>EBAY-US</globalId> <subtitle>Edited by Christopher Tolkien (2009) Norse Poetry, Myth</subtitle> <primaryCategory> <categoryId>377</categoryId> <categoryName>Fiction Books</categoryName> </primaryCategory> <galleryURL> https://thumbs2.ebaystatic.com/pict/2**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/The-Legend-of-Sigurd-and-Gudrun-by-J-R-R- Tolkien-NEW_W0QQitemZ2**********4QQcmdZViewItemQQptZUS_Fiction_Books?hash= item4399feaff0</viewItemURL> <productId type="ReferenceID">72407768</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>91***</postalCode> <location>Valencia,CA,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Calculated</shippingType> <shipToLocations>Worldwide</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">15.99</currentPrice> <convertedCurrentPrice currencyId="USD">15.99</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT1H17M36S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>true</buyItNowAvailable> <buyItNowPrice currencyId="USD">17.99</buyItNowPrice> <convertedBuyItNowPrice currencyId="USD">17.99</convertedBuyItNowPrice> <startTime>2015-09-03T19:40:01.000Z</startTime> <endTime>2015-09-10T19:40:01.000Z</endTime> <listingType>AuctionWithBIN</listingType> <gift>false</gift> </listingInfo> </item> </searchResult> <paginationOutput> <totalPages>1011</totalPages> <totalEntries>2022</totalEntries> <pageNumber>1</pageNumber> <entriesPerPage>2</entriesPerPage> </paginationOutput> </findItemsAdvancedResponse>
Builds on the Basic sample by returning only items that are offered with one day handling and one day shipping.
Description
The buyer is looking for an Apple iPad that's available with one day handling and one day shipping.
Input
The single keyword "iPad" is used for the findItemsAdvanced call. This simple call will select all the active items on eBay that have iPad
in the title, but limits the results by specifying a MaxHandlingTime of 1
and an ExpeditedShippingType of OneDayShipping
. The response is limited to the first two items by the following setting: paginationInput.entriesPerPage=2
.
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD=true&
paginationInput.entriesPerPage=2&
keywords=iPad&
itemFilter(0).name=MaxHandlingTime&
itemFilter(0).value=1&
itemFilter(1).name=ExpeditedShippingType&
itemFilter(1).value=OneDayShipping
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <itemFilter> <name>MaxHandlingTime</name> <value>1</value> </itemFilter> <itemFilter> <name>ExpeditedShippingType</name> <value>OneDayShipping</value> </itemFilter> <keywords>iPad</keywords> <paginationInput> <entriesPerPage>2</entriesPerPage> </paginationInput> </findItemsAdvancedRequest>
Output
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedResponse xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.12.0</version> <timestamp>2016-04-03T19:39:44.008Z</timestamp> <searchResult count="2"> <item> <itemId>3**********0</itemId> <title>Apple iPad 32GB 1st Gen Wi-Fi 9.7in MB293LL/A Tablet Black - GOOD CONDITION</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>171485</categoryId> <categoryName>iPads, Tablets & eBook Readers</categoryName> </primaryCategory> <galleryURL>https://thumbs1.ebaystatic.com/pict/3**************0_1.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/Apple-iPad-32GB-1st-Gen-Wi-Fi-9-7in-MB293LL-A-Tablet-Black-GOOD-CONDITION-/3**********0?pt=US_Tablets</viewItemURL> <productId type="ReferenceID">103153923</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>true</autoPay> <postalCode>07***</postalCode> <location>Chester,NJ,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>FlatDomesticCalculatedInternational</shippingType> <shipToLocations>Worldwide</shipToLocations> <expeditedShipping>false</expeditedShipping> <oneDayShippingAvailable>true</oneDayShippingAvailable> <handlingTime>1</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">222.99</currentPrice> <convertedCurrentPrice currencyId="USD">222.99</convertedCurrentPrice> <sellingState>Active</sellingState> <timeLeft>P23DT7H16M42S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2016-03-28T02:57:27.000Z</startTime> <endTime>2016-04-27T02:56:26.000Z</endTime> <listingType>FixedPrice</listingType> <gift>false</gift> </listingInfo> <returnsAccepted>true</returnsAccepted> <condition> <conditionId>3000</conditionId> <conditionDisplayName>Used</conditionDisplayName> </condition> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>true</topRatedListing> </item> <item> <itemId>3**********2</itemId> <title>Apple iPad 64GB WiFi + 3G Black 1st Gen-MC497LL/A-Good Condition</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>171485</categoryId> <categoryName>iPads, Tablets & eBook Readers</categoryName> </primaryCategory> <galleryURL>https://thumbs3.ebaystatic.com/m/m*********************w/140.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/Apple-iPad-64GB-WiFi-3G-Black-1st-Gen-MC497LL-A-Good-Condition-/3**********2?pt=US_Tablets</viewItemURL> <productId type="ReferenceID">108447730</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>true</autoPay> <postalCode>75***</postalCode> <location>Irving,TX,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> <expeditedShipping>true</expeditedShipping> <oneDayShippingAvailable>true</oneDayShippingAvailable> <handlingTime>1</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">206.89</currentPrice> <convertedCurrentPrice currencyId="USD">206.89</convertedCurrentPrice> <sellingState>Active</sellingState> <timeLeft>P13DT22H16M31S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2016-02-16T17:51:15.000Z</startTime> <endTime>2016-04-17T17:56:15.000Z</endTime> <listingType>FixedPrice</listingType> <gift>false</gift> </listingInfo> <returnsAccepted>true</returnsAccepted> <condition> <conditionId>3000</conditionId> <conditionDisplayName>Used</conditionDisplayName> </condition> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>false</topRatedListing> </item> </searchResult> <paginationOutput> <pageNumber>1</pageNumber> <entriesPerPage>2</entriesPerPage> <totalPages>14292</totalPages> <totalEntries>28583</totalEntries> </paginationOutput> <itemSearchURL>https://www.ebay.com/sch/i.html?_nkw=iPad&_ddo=1&_ipg=2&_mhd=1&_ods=1&_pgn=1</itemSearchURL> </findItemsAdvancedResponse>
Builds on the Basic sample by returning only items that are offered with free shipping.
Description
The buyer is looking for a Tolkien (Lord of the Rings) item with free shipping.
Input
The single keyword "tolkien" is used for the findItemsAdvanced call. This simple call will select all the active items on eBay that have tolkien
in the title, but limits the results by specifying FreeShippingOnly as an item filter. The response is limited to the first two items by the following setting: paginationInput.entriesPerPage=2
.
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD=true&
paginationInput.entriesPerPage=2&
keywords=tolkien&
itemFilter.name=FreeShippingOnly&
itemFilter.value=true
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <itemFilter> <name>FreeShippingOnly</name> <value>true</value> </itemFilter> <keywords>tolkien</keywords> <paginationInput> <entriesPerPage>2</entriesPerPage> </paginationInput> </findItemsAdvancedRequest>
Output
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedResponse xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.12.0</version> <timestamp>2016-04-03T19:33:19.242Z</timestamp> <searchResult count="2"> <item> <itemId>3**********1</itemId> <title>THE HOBBIT J.R.R. TOLKIEN 3RD ED 25th prt. 1966 $3.95 ORIG DJ</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>29223</categoryId> <categoryName>Antiquarian & Collectible</categoryName> </primaryCategory> <galleryURL>https://thumbs4.ebaystatic.com/m/m*********************A/140.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/HOBBIT-J-R-R-TOLKIEN-3RD-ED-25th-prt-1966-3-95-ORIG-DJ-/3**********1?pt=Antiquarian_Collectible</viewItemURL> <paymentMethod>PayPal</paymentMethod> <autoPay>true</autoPay> <postalCode>66***</postalCode> <location>Overland Park,KS,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>Worldwide</shipToLocations> <expeditedShipping>true</expeditedShipping> <oneDayShippingAvailable>true</oneDayShippingAvailable> <handlingTime>1</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">89.0</currentPrice> <convertedCurrentPrice currencyId="USD">89.0</convertedCurrentPrice> <sellingState>Active</sellingState> <timeLeft>P4DT21H0M8S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2016-04-03T16:33:27.000Z</startTime> <endTime>2016-04-08T16:33:27.000Z</endTime> <gift>false</gift> </listingInfo> <returnsAccepted>true</returnsAccepted> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>true</topRatedListing> </item> <item> <itemId>2**********7</itemId> <title>RARE JRR Tolkien Box Set w/ 4 Paperbacks - Ballantine 1973 - GOOD CONDITION</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>29223</categoryId> <categoryName>Antiquarian & Collectible</categoryName> </primaryCategory> <galleryURL>https://thumbs2.ebaystatic.com/m/m*********************Q/140.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/RARE-JRR-Tolkien-Box-Set-w-4-Paperbacks-Ballantine-1973-GOOD-CONDITION-/2**********7?pt=Antiquarian_Collectible</viewItemURL> <paymentMethod>PayPal</paymentMethod> <autoPay>true</autoPay> <postalCode>89***</postalCode> <location>Henderson,NV,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> <expeditedShipping>false</expeditedShipping> <oneDayShippingAvailable>false</oneDayShippingAvailable> <handlingTime>2</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">10.0</currentPrice> <convertedCurrentPrice currencyId="USD">10.0</convertedCurrentPrice> <bidCount>3</bidCount> <sellingState>Active</sellingState> <timeLeft>P1DT1H29M35S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>true</buyItNowAvailable> <buyItNowPrice currencyId="USD">65.0</buyItNowPrice> <convertedBuyItNowPrice currencyId="USD">65.0</convertedBuyItNowPrice> <startTime>2016-03-25T21:02:54.000Z</startTime> <endTime>2016-04-04T21:02:54.000Z</endTime> <listingType>AuctionWithBIN</listingType> <gift>false</gift> </listingInfo> <returnsAccepted>false</returnsAccepted> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>false</topRatedListing> </item> </searchResult> <paginationOutput> <pageNumber>1</pageNumber> <entriesPerPage>2</entriesPerPage> <totalPages>1157</totalPages> <totalEntries>2313</totalEntries> </paginationOutput> <itemSearchURL>https://www.ebay.com/sch/i.html?LH_FS=1&_nkw=tolkien&_ddo=1&_ipg=2&_pgn=1</itemSearchURL> </findItemsAdvancedResponse>
Builds on the Basic sample by filtering the items returned based the payment method offered.
Description
The buyer is looking for an iPad where the payment method is PayPal.
Input
The single keyword "iPad" is used for the findItemsAdvanced call. This simple call will select all the active items on eBay that have iPad
in the title, but limits the results by the payment method and prevents duplicate items from being returned by specifying itemFilter.name=PaymentMethod
and itemFilter.value=PayPal
itemFilter.name=HideDuplicateItems
and itemFilter.value=true
as item filters. The response is also limited to the first three items by the following setting: paginationInput.entriesPerPage=3
.
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD=true&
paginationInput.entriesPerPage=3&
keywords=iPad&
itemFilter.name=PaymentMethod&
itemFilter.value=PayPal&
itemFilter.name=HideDuplicateItems&
itemFilter.value=true
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <itemFilter> <name>PaymentMethod</name> <value>PayPal</value> </itemFilter> <itemFilter> <name>HideDuplicateItems</name> <value>true</value> </itemFilter> <keywords>iPad</keywords> <paginationInput> <entriesPerPage>3</entriesPerPage> </paginationInput> </findItemsAdvancedRequest>
Output
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedResponse xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.12.0</version> <timestamp>2016-04-15T19:17:44.831Z</timestamp> <searchResult count="3"> <item> <itemId>3**********2</itemId> <title>Apple iPad 32GB WiFi Black 1st Gen-MB293LL/A-Good Condition</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>171485</categoryId> <categoryName>iPads, Tablets & eBook Readers</categoryName> </primaryCategory> <galleryURL>https://thumbs1.ebaystatic.com/m/m*********************g/140.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/Apple-iPad-32GB-WiFi-Black-1st-Gen-MB293LL-A-Good-Condition-/3**********2?pt=US_Tablets</viewItemURL> <productId type="ReferenceID">103153923</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>true</autoPay> <postalCode>75***</postalCode> <location>Irving,TX,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> <expeditedShipping>true</expeditedShipping> <oneDayShippingAvailable>true</oneDayShippingAvailable> <handlingTime>1</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">212.89</currentPrice> <convertedCurrentPrice currencyId="USD">212.89</convertedCurrentPrice> <sellingState>Active</sellingState> <timeLeft>P17DT22H3M57S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2016-03-04T17:16:41.000Z</startTime> <endTime>2016-05-03T17:21:41.000Z</endTime> <listingType>FixedPrice</listingType> <gift>false</gift> </listingInfo> <returnsAccepted>true</returnsAccepted> <condition> <conditionId>3000</conditionId> <conditionDisplayName>Used</conditionDisplayName> </condition> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>true</topRatedListing> </item> <item> <itemId>4**********8</itemId> <title>Apple iPad 3rd Generation 64GB, Wi-Fi, 9.7in - White - MD330LL</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>171485</categoryId> <categoryName>iPads, Tablets & eBook Readers</categoryName> </primaryCategory> <galleryURL>https://thumbs1.ebaystatic.com/m/m*********************w/140.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/Apple-iPad-3rd-Generation-64GB-Wi-Fi-9-7in-White-MD330LL-/4**********8?pt=US_Tablets</viewItemURL> <productId type="ReferenceID">109345970</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <location>USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">10.99</shippingServiceCost> <shippingType>Flat</shippingType> <shipToLocations>US</shipToLocations> <shipToLocations>CA</shipToLocations> <expeditedShipping>true</expeditedShipping> <oneDayShippingAvailable>false</oneDayShippingAvailable> <handlingTime>1</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">421.99</currentPrice> <convertedCurrentPrice currencyId="USD">421.99</convertedCurrentPrice> <bidCount>19</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H0M24S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2016-04-12T19:18:08.000Z</startTime> <endTime>2016-04-15T19:18:08.000Z</endTime> <listingType>Auction</listingType> <gift>false</gift> </listingInfo> <returnsAccepted>true</returnsAccepted> <condition> <conditionId>3000</conditionId> <conditionDisplayName>Used</conditionDisplayName> </condition> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>true</topRatedListing> </item> <item> <itemId>3**********9</itemId> <title>Apple iPad 16GB WiFi Black 1st Gen-MB292LL/A-Good Condition</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>171485</categoryId> <categoryName>iPads, Tablets & eBook Readers</categoryName> </primaryCategory> <galleryURL>https://thumbs2.ebaystatic.com/m/m*********************w/140.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/Apple-iPad-16GB-WiFi-Black-1st-Gen-MB292LL-A-Good-Condition-/3**********9?pt=US_Tablets</viewItemURL> <productId type="ReferenceID">103171278</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>true</autoPay> <postalCode>75***</postalCode> <location>Irving,TX,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> <expeditedShipping>true</expeditedShipping> <oneDayShippingAvailable>true</oneDayShippingAvailable> <handlingTime>1</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">202.89</currentPrice> <convertedCurrentPrice currencyId="USD">202.89</convertedCurrentPrice> <sellingState>Active</sellingState> <timeLeft>P17DT19H44M26S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2016-04-03T14:57:10.000Z</startTime> <endTime>2016-05-03T15:02:10.000Z</endTime> <listingType>FixedPrice</listingType> <gift>false</gift> </listingInfo> <returnsAccepted>true</returnsAccepted> <condition> <conditionId>3000</conditionId> <conditionDisplayName>Used</conditionDisplayName> </condition> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>true</topRatedListing> </item> </searchResult> <paginationOutput> <pageNumber>1</pageNumber> <entriesPerPage>3</entriesPerPage> <totalPages>86166</totalPages> <totalEntries>258497</totalEntries> </paginationOutput> <itemSearchURL>https://www.ebay.com/sch/i.html?payment=PayPal&LH_PayPal=1&_nkw=iPad&_ipg=3&_pgn=1</itemSearchURL> </findItemsAdvancedResponse>
Builds on the Basic sample by filtering the items returned based on the seller's feedback score.
Description
The buyer is looking for a Tolkien item from a seller who has a feedback score of at least 200.
Input
The single keyword "tolkien" is used for the findItemsAdvanced call. This simple call will select all the active items on eBay that have tolkien
in the title, but limits the results by specifying itemFilter.name=FeedbackScoreMin
and itemFilter.value=200
as an item filter. The response is also limited to the first two items by the following setting: paginationInput.entriesPerPage=2
.
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD=true&
paginationInput.entriesPerPage=2&
keywords=tolkien&
itemFilter.name=FeedbackScoreMin&
itemFilter.value=200
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <itemFilter> <name>FeedbackScoreMin</name> <value>200</value> </itemFilter> <keywords>tolkien</keywords> <paginationInput> <entriesPerPage>2</entriesPerPage> </paginationInput> </findItemsAdvancedRequest>
Output
XML format. Also available is the JSON equivalent. <br /><br /><?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedResponse xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.12.0</version> <timestamp>2016-04-15T16:45:26.051Z</timestamp> <searchResult count="2"> <item> <itemId>1**********2</itemId> <title>3 Tolkien companion books</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>377</categoryId> <categoryName>Fiction & Literature</categoryName> </primaryCategory> <galleryURL>https://thumbs3.ebaystatic.com/m/m*********************w/140.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/3-Tolkien-companion-books-/1**********2?pt=US_Fiction_Books</viewItemURL> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>84***</postalCode> <location>Ogden,UT,USA</location> <country>US</country> <shippingInfo> <shippingType>Calculated</shippingType> <shipToLocations>US</shipToLocations> <expeditedShipping>false</expeditedShipping> <oneDayShippingAvailable>false</oneDayShippingAvailable> <handlingTime>3</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">0.99</currentPrice> <convertedCurrentPrice currencyId="USD">0.99</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT2H29M28S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>true</buyItNowAvailable> <buyItNowPrice currencyId="USD">15.0</buyItNowPrice> <convertedBuyItNowPrice currencyId="USD">15.0</convertedBuyItNowPrice> <startTime>2016-04-08T19:15:55.000Z</startTime> <endTime>2016-04-15T19:14:54.000Z</endTime> <listingType>AuctionWithBIN</listingType> <gift>false</gift> </listingInfo> <returnsAccepted>false</returnsAccepted> <condition> <conditionId>4000</conditionId> <conditionDisplayName>Very Good</conditionDisplayName> </condition> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>false</topRatedListing> </item> <item> <itemId>3**********5</itemId> <title>J. R. R TOLKIEN - Smith of Wootton Major - 1ST EDITION THUS</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>29223</categoryId> <categoryName>Antiquarian & Collectible</categoryName> </primaryCategory> <galleryURL>https://thumbs2.ebaystatic.com/m/m*********************g/140.jpg</galleryURL> <viewItemURL>https://www.ebay.com/itm/J-R-R-TOLKIEN-Smith-Wootton-Major-1ST-EDITION-THUS-/3**********5?pt=Antiquarian_Collectible</viewItemURL> <paymentMethod>PayPal</paymentMethod> <autoPay>true</autoPay> <postalCode>03***</postalCode> <location>Exeter,NH,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">4.0</shippingServiceCost> <shippingType>Flat</shippingType> <shipToLocations>Worldwide</shipToLocations> <expeditedShipping>true</expeditedShipping> <oneDayShippingAvailable>true</oneDayShippingAvailable> <handlingTime>1</handlingTime> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">25.0</currentPrice> <convertedCurrentPrice currencyId="USD">25.0</convertedCurrentPrice> <sellingState>Active</sellingState> <timeLeft>P8DT4H19M53S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2016-02-22T21:00:19.000Z</startTime> <endTime>2016-04-23T21:05:19.000Z</endTime> <gift>false</gift> </listingInfo> <returnsAccepted>true</returnsAccepted> <isMultiVariationListing>false</isMultiVariationListing> <topRatedListing>true</topRatedListing> </item> </searchResult> <paginationOutput> <pageNumber>1</pageNumber> <entriesPerPage>2</entriesPerPage> <totalPages>3479</totalPages> <totalEntries>6957</totalEntries> </paginationOutput> <itemSearchURL>https://www.ebay.com/sch/i.html?_nkw=tolkien&_ddo=1&_fblo=200&_fbsc=1&_ipg=2&_pgn=1</itemSearchURL> </findItemsAdvancedResponse>
Builds on the Basic sample by adding a specific category to search.
Description
The buyer is looking for a Lord of the Rings gift. They have searched using the keyword "tolkien", but have found the response to be too broad--most of the items returned are books, but the buyer is looking for something other than a book.
Input
To generate a more directed search, the request identifies a specific category to search (eBay Category 1 is the root category for collectibles), and the search is opened up to all the item descriptions and subtitles of the items in the specified category with descriptionSearch set to true (note that the second item returned does not have "tolkien" in the title).
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD&
paginationInput.entriesPerPage=2&
keywords=tolkien&
categoryId=1&
descriptionSearch=true
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <categoryId>1</categoryId> <descriptionSearch>true</descriptionSearch> <paginationInput> <entriesPerPage>2</entriesPerPage> </paginationInput> <keywords>tolkien</keywords> </findItemsAdvancedRequest>
Output
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedResponse xmlns:ms="https://www.ebay.com/marketplace/services" xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.0.0</version> <timestamp>2015-09-10T18:21:00.131Z</timestamp> <searchResult count="2"> <item> <itemId>2**********8</itemId> <title>OLD JRR TOLKIEN HOBBIT POSTER Gandalf Laughing Dwarves</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>73518</categoryId> <categoryName>Posters, Prints</categoryName> </primaryCategory> <galleryURL> https://thumbs1.ebaystatic.com/pict/2**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/OLD-JRR-TOLKIEN-HOBBIT-POSTER-Gandalf-Laughing- Dwarves_W0QQitemZ2**********8QQcmdZViewItemQQptZLH_DefaultDomain_0?hash= item3ca556dd74</viewItemURL> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>20***</postalCode> <location>Warrenton,VA,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">6.95</shippingServiceCost> <shippingType>Flat</shippingType> <shipToLocations>Worldwide</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">24.95</currentPrice> <convertedCurrentPrice currencyId="USD">24.95</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H36M31S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2015-09-03T18:57:31.000Z</startTime> <endTime>2015-09-10T18:57:31.000Z</endTime> <listingType>Auction</listingType> <gift>false</gift> </listingInfo> </item> <item> <itemId>3**********5</itemId> <title>ANDURIL:SWORD OF KING ELESSAR LOTR NR</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>43337</categoryId> <categoryName>Fantasy, Film, TV</categoryName> </primaryCategory> <galleryURL> https://thumbs3.ebaystatic.com/pict/3**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/ANDURIL-SWORD-OF-KING-ELESSAR-LOTR- NR_W0QQitemZ3**********5QQcmdZViewItemQQptZLH_DefaultDomain_0?hash= item4a9a745dd5</viewItemURL> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>37***</postalCode> <location>Tullahoma,TN,USA</location> <country>US</country> <shippingInfo> <shippingType>Calculated</shippingType> <shipToLocations>US</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">172.5</currentPrice> <convertedCurrentPrice currencyId="USD">172.5</convertedCurrentPrice> <bidCount>9</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H52M36S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2015-08-31T19:13:36.000Z</startTime> <endTime>2015-09-10T19:13:36.000Z</endTime> <listingType>Auction</listingType> <gift>false</gift> </listingInfo> </item> </searchResult> <paginationOutput> <totalPages>92</totalPages> <totalEntries>183</totalEntries> <pageNumber>1</pageNumber> <entriesPerPage>2</entriesPerPage> </paginationOutput> </findItemsAdvancedResponse>
Retrieves a set of items from the eBay category number 31388 (Digital Cameras). The call makes use of item filters, returning only items that are Used, Buy It Now items. Also returns an aspect histogram of the 31388 category.
Description
The user wants to display used, Buy It Now digital cameras. The response is restricted to two items per page.
The response contains histogram information (item counts) for the specified category, as well as a list of the immediate sub-categories (child categories) with their associated item counts. In addition to category histograms, the response also contains aspect histogram information. Aspect information allows you to refine the items returned in a call response by passing in the aspect values in a subsequent findItemsAdvanced query. Aspects are standardized characteristics of the item categories.
You can retrieve the eBay categoryId numbers from the response of this call and from the eBay web site. You can also obtain a complete list of eBay categories with the getCategories call in the Trading API.
Input
The categoryId field specifies the category (Digital Cameras) for which the histograms are returned.
Note: URL samples have been wrapped for readability. To run the samples, undo the line wrapping and insert your own SECURITY-APPNAME
.
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD&
outputSelector=AspectHistogram&
itemFilter(0).name=Condition&
itemFilter(0).value=Used&
itemFilter(1).name=ListingType&
itemFilter(1).value=AuctionWithBIN&
paginationInput.entriesPerPage=2&
categoryId=31388
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <categoryId>31388</categoryId> <outputSelector>AspectHistogram</outputSelector> <itemFilter> <name>Condition</name> <value>Used</value> </itemFilter> <itemFilter> <name>ListingType</name> <value>AuctionWithBIN</value> </itemFilter> <paginationInput> <entriesPerPage>2</entriesPerPage> </paginationInput> </findItemsAdvancedRequest>
Output
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedResponse xmlns:ms="https://www.ebay.com/marketplace/services" xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.11.0</version> <timestamp>2015-09-10T00:51:17.571Z</timestamp> <searchResult count="2"> <item> <itemId>3**********4</itemId> <title>KODAK Z1085 10MP EASYSHARE DIGITAL CAMERA W/HD ABILITY</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>31388</categoryId> <categoryName>Digital Cameras</categoryName> </primaryCategory> <galleryURL> https://thumbs2.ebaystatic.com/pict/3**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/KODAK-Z1085-10MP-EASYSHARE-DIGITAL-CAMERA-W-HD- ABILITY_W0QQitemZ3**********4QQcmdZViewItemQQptZDigital_Cameras?hash= item5ad33ed7ce</viewItemURL> <productId type="ReferenceID">65606848</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>27***</postalCode> <location>Clayton,NC,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> <shipToLocations>CA</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">87.99</currentPrice> <convertedCurrentPrice currencyId="USD">87.99</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H10M16S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>true</buyItNowAvailable> <buyItNowPrice currencyId="USD">88.99</buyItNowPrice> <convertedBuyItNowPrice currencyId="USD">88.99</convertedBuyItNowPrice> <startTime>2015-09-07T01:01:33.000Z</startTime> <endTime>2015-09-10T01:01:33.000Z</endTime> <listingType>AuctionWithBIN</listingType> <gift>false</gift> </listingInfo> </item> <item> <itemId>3**********7</itemId> <title>KODAK EASYSHARE M1033 10MP DIGITAL CAMERA W/ CHARGER</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>31388</categoryId> <categoryName>Digital Cameras</categoryName> </primaryCategory> <galleryURL> https://thumbs2.ebaystatic.com/pict/3**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/KODAK-EASYSHARE-M1033-10MP-DIGITAL-CAMERA-W- CHARGER_W0QQitemZ3**********7QQcmdZViewItemQQptZDigital_Cameras?hash= item5ad33ed7d1</viewItemURL> <productId type="ReferenceID">65621377</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>27***</postalCode> <location>Clayton,NC,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> <shipToLocations>CA</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">89.99</currentPrice> <convertedCurrentPrice currencyId="USD">89.99</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H10M16S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>true</buyItNowAvailable> <buyItNowPrice currencyId="USD">90.99</buyItNowPrice> <convertedBuyItNowPrice currencyId="USD">90.99</convertedBuyItNowPrice> <startTime>2015-09-07T01:01:33.000Z</startTime> <endTime>2015-09-10T01:01:33.000Z</endTime> <listingType>AuctionWithBIN</listingType> <gift>false</gift> </listingInfo> </item> </searchResult> <paginationOutput> <totalPages>511</totalPages> <totalEntries>1021</totalEntries> <pageNumber>1</pageNumber> <entriesPerPage>2</entriesPerPage> </paginationOutput> <aspectHistogramContainer> <domainName>Digital_Cameras</domainName> <domainDisplayName>Digital Cameras</domainDisplayName> <aspect name="Brand"> <valueHistogram valueName="Argus"> <count>2</count> </valueHistogram> <valueHistogram valueName="Canon"> <count>175</count> </valueHistogram> <valueHistogram valueName="Casio"> <count>22</count> </valueHistogram> <valueHistogram valueName="Fujifilm"> <count>57</count> </valueHistogram> <valueHistogram valueName="Gateway"> <count>1</count> </valueHistogram> <valueHistogram valueName="HP"> <count>13</count> </valueHistogram> <valueHistogram valueName="Kodak"> <count>265</count> </valueHistogram> <valueHistogram valueName="Konica"> <count>4</count> </valueHistogram> <valueHistogram valueName="Konica Minolta"> <count>4</count> </valueHistogram> <valueHistogram valueName="Leica"> <count>13</count> </valueHistogram> <valueHistogram valueName="Minolta"> <count>8</count> </valueHistogram> <valueHistogram valueName="Mustek"> <count>1</count> </valueHistogram> <valueHistogram valueName="Nikon"> <count>131</count> </valueHistogram> <valueHistogram valueName="Olympus"> <count>69</count> </valueHistogram> <valueHistogram valueName="Panasonic"> <count>24</count> </valueHistogram> <valueHistogram valueName="Pentax"> <count>11</count> </valueHistogram> <valueHistogram valueName="Polaroid"> <count>11</count> </valueHistogram> <valueHistogram valueName="Ricoh"> <count>3</count> </valueHistogram> <valueHistogram valueName="Samsung"> <count>13</count> </valueHistogram> <valueHistogram valueName="Sanyo"> <count>8</count> </valueHistogram> <valueHistogram valueName="Sigma"> <count>2</count> </valueHistogram> <valueHistogram valueName="Sony"> <count>140</count> </valueHistogram> <valueHistogram valueName="Toshiba"> <count>2</count> </valueHistogram> <valueHistogram valueName="Vivitar"> <count>7</count> </valueHistogram> <valueHistogram valueName="Not Specified"> <count>38</count> </valueHistogram> </aspect> <aspect name="Type"> <valueHistogram valueName="Point & Shoot"> <count>716</count> </valueHistogram> <valueHistogram valueName="SLR, Professional"> <count>210</count> </valueHistogram> <valueHistogram valueName="Spy & Miniature"> <count>2</count> </valueHistogram> <valueHistogram valueName="Underwater"> <count>5</count> </valueHistogram> <valueHistogram valueName="Not Specified"> <count>85</count> </valueHistogram> </aspect> <aspect name="Megapixels"> <valueHistogram valueName="14.0 MP & More"> <count>89</count> </valueHistogram> <valueHistogram valueName="12.0 to 12.9 MP"> <count>64</count> </valueHistogram> <valueHistogram valueName="11.0 to 11.9 MP"> <count>2</count> </valueHistogram> <valueHistogram valueName="10.0 to 10.9 MP"> <count>256</count> </valueHistogram> <valueHistogram valueName="9.0 to 9.9 MP"> <count>8</count> </valueHistogram> <valueHistogram valueName="8.0 to 8.9 MP"> <count>147</count> </valueHistogram> <valueHistogram valueName="7.0 to 7.9 MP"> <count>74</count> </valueHistogram> <valueHistogram valueName="6.0 to 6.9 MP"> <count>97</count> </valueHistogram> <valueHistogram valueName="5.0 to 5.9 MP"> <count>73</count> </valueHistogram> <valueHistogram valueName="4.0 to 4.9 MP"> <count>50</count> </valueHistogram> <valueHistogram valueName="3.0 to 3.9 MP"> <count>53</count> </valueHistogram> <valueHistogram valueName="Less than 3.0 MP"> <count>27</count> </valueHistogram> <valueHistogram valueName="Not Specified"> <count>55</count> </valueHistogram> </aspect> <aspect name="Optical Zoom"> <valueHistogram valueName="2x"> <count>13</count> </valueHistogram> <valueHistogram valueName="3x"> <count>428</count> </valueHistogram> <valueHistogram valueName="4x"> <count>64</count> </valueHistogram> <valueHistogram valueName="5x"> <count>148</count> </valueHistogram> <valueHistogram valueName="6x"> <count>14</count> </valueHistogram> <valueHistogram valueName="7x"> <count>11</count> </valueHistogram> <valueHistogram valueName="8x"> <count>13</count> </valueHistogram> <valueHistogram valueName="10x"> <count>33</count> </valueHistogram> <valueHistogram valueName="12x"> <count>48</count> </valueHistogram> <valueHistogram valueName="14x"> <count>1</count> </valueHistogram> <valueHistogram valueName="16x"> <count>1</count> </valueHistogram> <valueHistogram valueName="Not Specified"> <count>244</count> </valueHistogram> </aspect> <aspect name="Condition"> <valueHistogram valueName="Refurbished"> <count>247</count> </valueHistogram> <valueHistogram valueName="Used"> <count>1014</count> </valueHistogram> </aspect> <aspect name="Bundled Items"> <valueHistogram valueName="Extra Memory"> <count>293</count> </valueHistogram> <valueHistogram valueName="Neck Strap"> <count>254</count> </valueHistogram> <valueHistogram valueName="Camera Bag"> <count>186</count> </valueHistogram> <valueHistogram valueName="Extra Battery"> <count>149</count> </valueHistogram> <valueHistogram valueName="Lens"> <count>126</count> </valueHistogram> <valueHistogram valueName="Flash"> <count>82</count> </valueHistogram> <valueHistogram valueName="Memory Reader"> <count>46</count> </valueHistogram> <valueHistogram valueName="Tripod"> <count>44</count> </valueHistogram> <valueHistogram valueName="Lens Cleaning Kit"> <count>39</count> </valueHistogram> <valueHistogram valueName="Printer"> <count>4</count> </valueHistogram> <valueHistogram valueName="Not Specified"> <count>465</count> </valueHistogram> </aspect> <aspect name="Warranty"> <valueHistogram valueName="Yes"> <count>251</count> </valueHistogram> <valueHistogram valueName="Not Specified"> <count>764</count> </valueHistogram> </aspect> </aspectHistogramContainer> </findItemsAdvancedResponse>
This sample retrieves every active listing for the specified seller.
Description
This sample shows how to retrieve all active listings for a given seller. The request will retrieve up to 10,000 listings (i.e., 100 pages of 100 entries per page). The only search criteria in this request is the Seller item filter. Normally, keywords or categoryId are required, and this is the only exception.
Note: The Trading API includes GetMyeBaySelling or GetSellerList, either of which can also be used to retrieve a seller's listings. These calls may may be better suited for sellers wishing to track and monitor their listings. |
Input
The itemFilter container is the notable input for the request.
This request uses inputPagination to limit the size of the sample for documentation purposes. The outputSelector field is set to "SellerInfo" to show that the items returned are from the same seller. In practice, retrieving the sellerInfo node would result in a lot of redundant information when retrieving items for a specific seller.
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.7.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD&
itemFilter(0).name=Seller&
itemFilter(0).value=e***y&
paginationInput.entriesPerPage=3&
outputSelector=SellerInfo
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <itemFilter> <name>Seller</name> <value>e***y</value> </itemFilter> <paginationInput> <entriesPerPage>3</entriesPerPage> </paginationInput> <outputSelector>SellerInfo</outputSelector> </findItemsAdvancedRequest>
Output
Note: The sellerInfo.sellerUserName value in the response will match the value specified for the seller name in the request. The seller's name has been anonymized in the request and the response, per eBay policy.
XML format. Also available is the JSON equivalent. <findItemsAdvancedResponse xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.11.0</version> <timestamp>2015-09-17T22:21:35.231Z</timestamp> <searchResult count="3"> <item> <itemId>3**********0</itemId> <title>2 HEADPHONE EARPHONE for APPLE IPOD IPHONE 4 4G OS4+MIC</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>112529</categoryId> <categoryName>Headphones & Earbuds</categoryName> </primaryCategory> <galleryURL>https://thumbs3.ebaystatic.com/pict/3**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/2-HEADPHONE-EARPHONE-APPLE-IPOD-IPHONE-4-4G-OS4-MIC-/3**********0?pt=Other_MP3_Player_Accessories</viewItemURL> <paymentMethod>PayPal</paymentMethod> <paymentMethod>VisaMC</paymentMethod> <autoPay>false</autoPay> <location>USA</location> <country>US</country> <sellerInfo> <sellerUserName>e***y</sellerUserName> <feedbackScore>1976549</feedbackScore> <positiveFeedbackPercent>99.6</positiveFeedbackPercent> <feedbackRatingStar>RedShooting</feedbackRatingStar> <topRatedSeller>true</topRatedSeller> </sellerInfo> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">6.79</currentPrice> <convertedCurrentPrice currencyId="USD">6.79</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H2M17S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>true</buyItNowAvailable> <buyItNowPrice currencyId="USD">7.47</buyItNowPrice> <convertedBuyItNowPrice currencyId="USD">7.47</convertedBuyItNowPrice> <startTime>2015-09-16T22:23:52.000Z</startTime> <endTime>2015-09-17T22:23:52.000Z</endTime> <listingType>AuctionWithBIN</listingType> <gift>false</gift> </listingInfo> <condition> <conditionId>1000</conditionId> <conditionDisplayName>New</conditionDisplayName> </condition> </item> <item> <itemId>3**********9</itemId> <title>New Black Sport Armband Holder Case for Apple iPhone 3G</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>20336</categoryId> <categoryName>Cell Phone & PDA Accessories</categoryName> </primaryCategory> <galleryURL>https://thumbs2.ebaystatic.com/pict/3**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/New-Black-Sport-Armband-Holder-Case-Apple-iPhone-3G-/3**********9?pt=PDA_Accessories</viewItemURL> <paymentMethod>PayPal</paymentMethod> <paymentMethod>VisaMC</paymentMethod> <autoPay>false</autoPay> <location>USA</location> <country>US</country> <sellerInfo> <sellerUserName>e***y</sellerUserName> <feedbackScore>1976549</feedbackScore> <positiveFeedbackPercent>99.6</positiveFeedbackPercent> <feedbackRatingStar>RedShooting</feedbackRatingStar> <topRatedSeller>true</topRatedSeller> </sellerInfo> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">5.05</currentPrice> <convertedCurrentPrice currencyId="USD">5.05</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H2M49S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>true</buyItNowAvailable> <buyItNowPrice currencyId="USD">5.56</buyItNowPrice> <convertedBuyItNowPrice currencyId="USD">5.56</convertedBuyItNowPrice> <startTime>2015-09-16T22:24:24.000Z</startTime> <endTime>2015-09-17T22:24:24.000Z</endTime> <listingType>AuctionWithBIN</listingType> <gift>false</gift> </listingInfo> <condition> <conditionId>1000</conditionId> <conditionDisplayName>New</conditionDisplayName> </condition> </item> <item> <itemId>3**********0</itemId> <title>For Xbox 360 HD VGA AV Cable + RCA To 3.5MM Adapter</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>139969</categoryId> <categoryName>Accessories</categoryName> </primaryCategory> <galleryURL>https://thumbs3.ebaystatic.com/pict/3**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/Xbox-360-HD-VGA-AV-Cable-RCA-3-5MM-Adapter-/3**********0?pt=Video_Games_Accessories</viewItemURL> <paymentMethod>PayPal</paymentMethod> <paymentMethod>VisaMC</paymentMethod> <autoPay>false</autoPay> <location>USA</location> <country>US</country> <sellerInfo> <sellerUserName>e***y</sellerUserName> <feedbackScore>1976549</feedbackScore> <positiveFeedbackPercent>99.6</positiveFeedbackPercent> <feedbackRatingStar>RedShooting</feedbackRatingStar> <topRatedSeller>true</topRatedSeller> </sellerInfo> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">7.8</currentPrice> <convertedCurrentPrice currencyId="USD">7.8</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H3M58S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>true</buyItNowAvailable> <buyItNowPrice currencyId="USD">8.59</buyItNowPrice> <convertedBuyItNowPrice currencyId="USD">8.59</convertedBuyItNowPrice> <startTime>2015-09-16T22:25:33.000Z</startTime> <endTime>2015-09-17T22:25:33.000Z</endTime> <listingType>AuctionWithBIN</listingType> <gift>false</gift> </listingInfo> <condition> <conditionId>1000</conditionId> <conditionDisplayName>New</conditionDisplayName> </condition> </item> </searchResult> <paginationOutput> <pageNumber>1</pageNumber> <entriesPerPage>3</entriesPerPage> <totalPages>44004</totalPages> <totalEntries>132011</totalEntries> </paginationOutput> <itemSearchURL>https://shop.ebay.com/i.html?_sasl=eforcity&_saslop=1&_fss=1&LH_SpecificSeller=1&_ddo=1&_ipg=3&_os=S%7CD&_pgn=1</itemSearchURL> </findItemsAdvancedResponse>
This sample builds on the first sample by using aspect values to refine the results returned by a second findItemsAdvanced call. The response only includes items within a specified price range.
Description
This request uses aspect filters by incorporating aspect values returned in a previous findItemsAdvanced response. The aspect filter narrows down the response to items that more closely match the user's needs.
In addition, this request makes use of a price range by specifying minimum and maximum prices for the returned items.
Input
Request for a 5 mega-pixel digital camera within a price range of $50 - $75 dollars. The output is restricted to two items, and no aspect histograms are returned.
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://svcs.ebay.com/services/search/FindingService/v1?
OPERATION-NAME=findItemsAdvanced&
SERVICE-VERSION=1.0.0&
SECURITY-APPNAME=YourAppID&
RESPONSE-DATA-FORMAT=XML&
REST-PAYLOAD&
itemFilter(0).name=MaxPrice&
itemFilter(0).value=75.00&
itemFilter(0).paramName=Currency&
itemFilter(0).paramValue=USD&
itemFilter(1).name=MinPrice&
itemFilter(1).value=50.00&
itemFilter(1).paramName=Currency&
itemFilter(1).paramValue=USD&
aspectFilter.aspectName=Megapixels&
aspectFilter.aspectValueName=5.0+to+5.9+MP&
paginationInput.entriesPerPage=2&
categoryId=31388
Here is the same input in XML format. Note that this does not include standard values.
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="UTF-8"?> <findItemsAdvancedRequest xmlns="http://www.ebay.com/marketplace/search/v1/services"> <categoryId>31388</categoryId> <itemFilter> <name>MaxPrice</name> <value>75.00</value> <paramName>Currency</paramName> <paramValue>USD</paramValue> </itemFilter> <itemFilter> <name>MinPrice</name> <value>50.00</value> <paramName>Currency</paramName> <paramValue>USD</paramValue> </itemFilter> <aspectFilter> <aspectName>Megapixels</aspectName> <aspectValueName>5.0 to 5.9 MP</aspectValueName> </aspectFilter> <paginationInput> <entriesPerPage>2</entriesPerPage> </paginationInput> </findItemsAdvancedRequest>
Output
XML format. Also available is the JSON equivalent. <?xml version="1.0" encoding="utf-8"?> <findItemsAdvancedResponse xmlns:ms="https://www.ebay.com/marketplace/services" xmlns="http://www.ebay.com/marketplace/search/v1/services"> <ack>Success</ack> <version>1.11.0</version> <timestamp>2015-09-10T18:24:43.020Z</timestamp> <searchResult count="2"> <item> <itemId>2**********3</itemId> <title>Panasonic Digital Camera - Excellent Condition!</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>31388</categoryId> <categoryName>Digital Cameras</categoryName> </primaryCategory> <galleryURL> https://thumbs2.ebaystatic.com/pict/2**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/Panasonic-Digital-Camera-Excellent- Condition_W0QQitemZ2**********3QQcmdZViewItemQQptZDigital_Cameras?hash= item335560404d</viewItemURL> <productId type="ReferenceID">52991871</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>10***</postalCode> <location>New York,NY,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">65.0</currentPrice> <convertedCurrentPrice currencyId="USD">65.0</convertedCurrentPrice> <bidCount>1</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT0H38M48S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2015-09-03T19:03:31.000Z</startTime> <endTime>2015-09-10T19:03:31.000Z</endTime> <listingType>Auction</listingType> <gift>false</gift> </listingInfo> </item> <item> <itemId>1**********0</itemId> <title>Kodak EasyShare C530 with 512 MB SD Card</title> <globalId>EBAY-US</globalId> <primaryCategory> <categoryId>31388</categoryId> <categoryName>Digital Cameras</categoryName> </primaryCategory> <galleryURL> https://thumbs1.ebaystatic.com/pict/1**************0_1.jpg</galleryURL> <viewItemURL>https://cgi.ebay.com/Kodak-EasyShare-C530-with-512-MB-SD- Card_W0QQitemZ1**********0QQcmdZViewItemQQptZDigital_Cameras?hash= item1c0c54f0b0</viewItemURL> <productId type="ReferenceID">50879703</productId> <paymentMethod>PayPal</paymentMethod> <autoPay>false</autoPay> <postalCode>01***</postalCode> <location>South Hadley,MA,USA</location> <country>US</country> <shippingInfo> <shippingServiceCost currencyId="USD">0.0</shippingServiceCost> <shippingType>Free</shippingType> <shipToLocations>US</shipToLocations> </shippingInfo> <sellingStatus> <currentPrice currencyId="USD">50.0</currentPrice> <convertedCurrentPrice currencyId="USD">50.0</convertedCurrentPrice> <bidCount>0</bidCount> <sellingState>Active</sellingState> <timeLeft>P0DT3H9M18S</timeLeft> </sellingStatus> <listingInfo> <bestOfferEnabled>false</bestOfferEnabled> <buyItNowAvailable>false</buyItNowAvailable> <startTime>2015-09-03T21:34:01.000Z</startTime> <endTime>2015-09-10T21:34:01.000Z</endTime> <listingType>Auction</listingType> <gift>false</gift> </listingInfo> </item> </searchResult> <paginationOutput> <totalPages>156</totalPages> <totalEntries>312</totalEntries> <pageNumber>1</pageNumber> <entriesPerPage>2</entriesPerPage> </paginationOutput> </findItemsAdvancedResponse>
Input Output Detail Controls Samples |
Change History
Change Date | Description |
---|---|
1.9.0 12/08/2010 |
|
1.6.0 07/07/2010 |
|
1.5.0 06/09/2010 |
|
1.4.0 04/14/2010 |
|
1.2.0 01/20/2009 |
|
1.13.0 10/21/2014 |
|
1.12.0 05/16/2012 |
|
1.11.0 06/08/2011 |
|
1.10.0 02/16/2011 |
|
1.1.0 11/11/2009 |
|
1.0.1 09/29/2009 |
|
1.0.0 06/24/2009 |
|