eBay Trading APIVersion 1349
 

GetSuggestedCategories

Note: This call has been deprecated and will be decommissioned on July 1st, 2024. The alternative to this call is the getCategorySuggestions method of the Taxonomy API, which also returns suggested eBay categories based on keywords.

Use this call to return a list of categories with the highest number of listings whose titles contain the keywords you specify.

Specify keywords describing an item you are looking for using the Query input field. GetSuggestedCategories returns a list of up to 10 categories that have the highest percentage of listings whose titles or descriptions contains the specified keywords. The query string can contain special characters.

Use GetSuggestedCategories to gather market intelligence about the best category in which to list a certain item.

The response contains an array of suggested categories and the count of the categories in the array (SuggestedCategoryArray and CategoryCount, respectively).

For each leaf node returned, GetSuggestedCategories returns a leaf category name and information to help you build a fully qualified name. The leaf category name is returned in the CategoryName field, such as Architecture. The parent category names are returned in an array of one or more CategoryParentName fields, in hierarchical order. The call also returns the leaf category ID and the parent IDs in the same manner.

The sample below shows a SuggestedCategory container that returns the structure for the following category: Art:Prints:Antique (Pre-1900):Architecture

<SuggestedCategory>
  <Category>
    <CategoryID>10165</CategoryID>
    <CategoryName>Architecture</CategoryName>
    <CategoryParentID>550</CategoryParentID>
    <CategoryParentID>20140</CategoryParentID>
    <CategoryParentID>10163</CategoryParentID>
    <CategoryParentName>Art</CategoryParentName>
    <CategoryParentName>Prints</CategoryParentName>
    <CategoryParentName>Antique (Pre-1900)</CategoryParentName>
  </Category>
  <PercentItemFound>4</PercentItemFound>
</SuggestedCategory>

Because the call returns only 10 categories, make your query string as specific as possible so that you do not have to make repeated calls to see if you can return different categories. Check the AND and OR logic in your query string before passing it to GetSuggestedCategories.

For a given category, inspect the SuggestedCategoryType.PercentItemsFound field. This field tells you what percentage of items in the category matched at least one item in the query string.

If GetSuggestedCategories does not return enough results, try using a more general query term. For example, test the difference between o'keefe, painting, and art. If the call returns too many results, try using a more specific query term or adding modifiers to your query.

Please note that although you can run GetSuggestedCategories in the Sandbox, the results may be inconsistent and will not match the results you see in eBay's Production environment. Therefore, we recommend that you test this call in Production instead of the Sandbox.

Note: To get category recommendations for motor vehicles, set the SiteID header value to '0', and not '100', as the SiteID value of '100' is no longer supported in the GetSuggestedCategories call.

See Introduction to listing categories.



Input

See also Samples.

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

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

The XML prototype does not include requester credentials. This is a documentation limitation only (see Standard Requester Credentials for Making Calls).

<?xml version="1.0" encoding="utf-8"?>
<GetSuggestedCategoriesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <!-- Call-specific Input Fields -->
  <Query> string </Query>
  <!-- Standard Input Fields -->
  <ErrorLanguage> string </ErrorLanguage>
  <MessageID> string </MessageID>
  <Version> string </Version>
  <WarningLevel> WarningLevelCodeType </WarningLevel>
</GetSuggestedCategoriesRequest>
Argument Type Occurrence Meaning
Call-specific Input Fields [Jump to standard fields]
Query string Required This field is used to specify the search query, consisting of one or more keywords to search for in listing titles and descriptions. The words "and" and "or" are treated like any other word.
Max length: 350.
Standard Input Fields  
ErrorLanguage string Optional Use ErrorLanguage to return error strings for the call in a different language from the language commonly associated with the site that the requesting user is registered with. Below are some examples from different countries.

ID Country
en_AU Australia
de_AT Austria
nl_BE Belgium (Dutch)
fr_BE Belgium (French)
en_CA Canada
fr_CA Canada (French)
zh_CN China
fr_FR France
de_DE Germany
zh_HK Hong Kong
en_IN India
en_IE Ireland
it_IT Italy
nl_NL Netherlands
en_SG Singapore
es_ES Spain
de_CH Switzerland
en_GB United Kingdom
en_US United States
MessageID string Optional Most Trading API calls support a MessageID element in the request and a CorrelationID element in the response. If you pass in a MessageID in a request, the same value will be returned in the CorrelationID field in the response. Pairing these values can help you track and confirm that a response is returned for every request and to match specific responses to specific requests. If you do not pass a MessageID value in the request, CorrelationID is not returned.

Note: GetCategories is designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, the MessageID and CorrelationID fields aren't applicable. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, MessageID and CorrelationID are applicable.
Version string Conditional The version number of the API code that you are programming against (e.g., 1149). The version you specify for a call has these basic effects:
  • It indicates the version of the code lists and other data that eBay should use to process your request.
  • It indicates the schema version you are using.
You need to use a version that is greater than or equal to the lowest supported version.
For the SOAP API: If you are using the SOAP API, this field is required. Specify the version of the WSDL your application is using.

For the XML API: If you are using the XML API, this field has no effect. Instead, specify the version in the X-EBAY-API-COMPATIBILITY-LEVEL HTTP header. (If you specify Version in the body of an XML API request and it is different from the value in the HTTP header, eBay returns an informational warning that the value in the HTTP header was used instead.)

See:
    HTTP headers
    eBay Schema Versioning Strategy
    Lowest Supported Version

WarningLevel WarningLevelCodeType Optional Controls whether or not to return warnings when the application passes unrecognized or deprecated elements in a request.

An unrecognized element is one that is not defined in any supported version of the schema. Schema element names are case-sensitive, so using WarningLevel can also help you remove any potential hidden bugs within your application due to incorrect case or spelling in field names before you put your application into the Production environment.

WarningLevel only validates elements; it doesn't validate XML attributes. It also doesn't control warnings related to user-entered strings or numbers, or warnings for logical errors.

We recommend that you only use this during development and debugging. Do not use this in requests performed in the Production environment.

Applicable values:

High
(in) The WarningLevel value is set to High if the user wishes to receive warnings when the application passes unrecognized or deprecated elements in an API call request. Setting the WarningLevel value to High is not recommended in a production environment. Instead, it should only be used during the development/debugging stage.
Low
(in) The WarningLevel value is set to Low if the user does not wish to receive warnings when the application passes unrecognized or deprecated elements in an API call request. This is the default value if WarningLevel is not specified in the call request.

See Warning Level.



Output

See also Samples.

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

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

<?xml version="1.0" encoding="utf-8"?>
<GetSuggestedCategoriesResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <!-- Call-specific Output Fields -->
  <CategoryCount> int </CategoryCount>
  <SuggestedCategoryArray> SuggestedCategoryArrayType
    <SuggestedCategory> SuggestedCategoryType
      <Category> CategoryType
        <CategoryID> string </CategoryID>
        <CategoryName> string </CategoryName>
        <CategoryParentID> string </CategoryParentID>
        <!-- ... more CategoryParentID values allowed here ... -->
        <CategoryParentName> string </CategoryParentName>
        <!-- ... more CategoryParentName values allowed here ... -->
      </Category>
      <PercentItemFound> int </PercentItemFound>
    </SuggestedCategory>
    <!-- ... more SuggestedCategory nodes allowed here ... -->
  </SuggestedCategoryArray>
  <!-- Standard Output Fields -->
  <Ack> AckCodeType </Ack>
  <Build> string </Build>
  <CorrelationID> string </CorrelationID>
  <Errors> ErrorType
    <ErrorClassification> ErrorClassificationCodeType </ErrorClassification>
    <ErrorCode> token </ErrorCode>
    <ErrorParameters ParamID="string"> ErrorParameterType
      <Value> string </Value>
    </ErrorParameters>
    <!-- ... more ErrorParameters nodes allowed here ... -->
    <LongMessage> string </LongMessage>
    <SeverityCode> SeverityCodeType </SeverityCode>
    <ShortMessage> string </ShortMessage>
  </Errors>
  <!-- ... more Errors nodes allowed here ... -->
  <HardExpirationWarning> string </HardExpirationWarning>
  <Timestamp> dateTime </Timestamp>
  <Version> string </Version>
</GetSuggestedCategoriesResponse>
Return Value Type Occurrence Meaning
Call-specific Output Fields [Jump to standard fields]
CategoryCount int Always This integer value indicates the number of suggested categories that were found that matched the keywords.
SuggestedCategoryArray SuggestedCategoryArrayType Always This container consists of an array of suggested listing categories for an item based on the keywords that were specified in the Query field of the call request. Up to 10 suggested categories may be returned. This container will always be returned unless the query in the request exceeds the maximum allowed characters. The quality/accuracy of the results may depend on the quality of the query string.
SuggestedCategoryArray
  .SuggestedCategory
SuggestedCategoryType Conditionally,
repeatable: [0..10]
Describes a category that contains listings that match specified keywords in the query. Returned if a category matches the query.
SuggestedCategoryArray
  .SuggestedCategory.Category
CategoryType Conditionally Describes a category that contains items that match the query.
SuggestedCategoryArray
  .SuggestedCategory.Category
  .CategoryID
string Conditionally This string value is the unique identifier of an eBay category. In GetItem and related calls, see the CategoryName field for the text name of the category. The parent category of this eBay category is only shown in GetCategories.

In an Add call, the PrimaryCategory.CategoryID is conditionally required unless the seller successfully uses the ProductListingDetails container to find an eBay catalog product match. When the seller successfully uses an eBay catalog product to create a listing, the listing title, listing description, item specifics, listing category, and stock photo defined in the catalog product is used to create the listing.

In an Add/Revise/Relist call, the SecondaryCategory.CategoryID is conditionally required if a Secondary Category is used. Using a Secondary Category can incur a listing fee.

For ReviseItem only: Previously, removing the listing from a secondary category was only possible within 12 hours of the listing's scheduled end time when an auction listing had no active bids or a multiple-quantity, fixed-price listing had no items sold, but this restriction no longer exists. Now, the secondary category can be dropped for any active listing at any time, regardless of whether an auction listing has bids or a fixed-price listing has sales. To drop a secondary category, the seller passes in a value of 0 in the SecondaryCategory.CategoryID field.

Max length: 10.
SuggestedCategoryArray
  .SuggestedCategory.Category
  .CategoryName
string Conditionally This string value is the display name of the eBay primary category, as it would appear on the eBay site. In GetItem, this will be a fully-qualified category name (e.g., Collectibles:Decorative Collectibles:Hummel, Goebel).
Max length: 50.
SuggestedCategoryArray
  .SuggestedCategory.Category
  .CategoryParentID
string Conditionally,
repeatable: [0..*]
This string value is the Category ID of the primary category's (indicated in the CategoryID field) parent category. The number of CategoryParentID values that are returned will depend on the LevelLimit value that is set (in GetCategories) and on how far up the primary category is in the eBay category hierarchy. CategoryParentID values are returned in correct sequence, starting from the root category and ending with the category that is the direct parent of the primary category specified in CategoryID. The CategoryID and CategoryParentID values will be the same if the LevelLimit value is set to 1.
Max length: 10.
SuggestedCategoryArray
  .SuggestedCategory.Category
  .CategoryParentName
string Conditionally,
repeatable: [0..*]
This string value is the display name of the category indicated in the corresponding CategoryParentID field. If multiple parent categories are retrieved in the GetSuggestedCategories call, the matching CategoryParentID and CategoryParentName can be found by following the sequence in which these fields are returned. The primary category's ancestors are returned in sequence beginning with the root category all the way down to the primary category's direct parent category.

The CategoryParentName fields and the CategoryName field can be used to build the fully-qualified category name and/or "breadcrumbs" browse path. (e.g., Computers & Networking > Technology Books > Certification).
SuggestedCategoryArray
  .SuggestedCategory
  .PercentItemFound
int Conditionally Percentage of the matching items that were found in this category, relative to other categories in which matching items were also found. Indicates the distribution of matching items across the suggested categories.
Min: 0. Max: 100.
Standard Output Fields  
Ack AckCodeType Always A token representing the application-level acknowledgement code that indicates the response status (e.g., success). The AckCodeType list specifies the possible values for the Ack field.

Applicable values:

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

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

Code so that your app gracefully handles any future changes to this list.
Build string Always This refers to the specific software build that eBay used when processing the request and generating the response. This includes the version number plus additional information. eBay Developer Support may request the build information when helping you resolve technical issues.
CorrelationID string Conditionally Most Trading API calls support a MessageID element in the request and a CorrelationID element in the response. If you pass in a MessageID in a request, the same value will be returned in the CorrelationID field in the response. Pairing these values can help you track and confirm that a response is returned for every request and to match specific responses to specific requests. If you do not pass a MessageID value in the request, CorrelationID is not returned.

Note: GetCategories is designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, the MessageID and CorrelationID fields aren't applicable. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, MessageID and CorrelationID are applicable.
Errors ErrorType Conditionally,
repeatable: [0..*]
A list of application-level errors (if any) that occurred when eBay processed the request.
Errors.ErrorClassification ErrorClassificationCodeType Conditionally API errors are divided between two classes: system errors and request errors.

Applicable values:

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

Code so that your app gracefully handles any future changes to this list.
Errors.ErrorCode token Conditionally A unique code that identifies the particular error condition that occurred. Your application can use error codes as identifiers in your customized error-handling algorithms.

See Errors By Number.

Errors.ErrorParameters ErrorParameterType Conditionally,
repeatable: [0..*]
This optional element carries a list of context-specific error variables that indicate details about the error condition. These are useful when multiple instances of ErrorType are returned.
Errors.ErrorParameters
  [ attribute ParamID ]
string Conditionally This optional element carries a list of context-specific error variables that indicate details about the error condition. These are useful when multiple instances of ErrorType are returned.
Errors.ErrorParameters.Value string Conditionally This is the value of the request parameter noted in the ParamID attribute. So, if the ParamID value was ItemID, the value in this field would be the actual value of that ItemID.
Errors.LongMessage string Conditionally A more detailed description of the condition that raised the error.
Errors.SeverityCode SeverityCodeType Conditionally Indicates whether the error is a severe error (causing the request to fail) or an informational error (a warning) that should be communicated to the user.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
Error
(out) The request that triggered the error was not processed successfully. When a serious application-level error occurs, the error is returned instead of the business data.

If the source of the problem is within the application (such as a missing required element), change the application before you retry the request.
  • If the problem is due to end-user input data, please alert the end-user to the problem and provide the means for them to correct the data. Once the problem in the application or data is resolved, you can attempt to re-send the request to eBay.
  • If the source of the problem is on eBay's side, An application can retry the request as-is a reasonable number of times (eBay recommends twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, the request may be resent in its original form.


See the Error handling section of the Making a Trading API call guide for more information.
Warning
(out) The request was processed successfully, but something occurred that may affect your application or the user. For example, eBay may have changed a value the user sent in. In this case, eBay returns a normal, successful response and also returns the warning.

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

Code so that your app gracefully handles any future changes to this list.
Errors.ShortMessage string Conditionally A brief description of the condition that raised the error.
HardExpirationWarning string Conditionally Expiration date of the user's authentication token. Only returned within the 7-day period prior to a token's expiration. To ensure that user authentication tokens are secure and to help avoid a user's token being compromised, tokens have a limited life span. A token is only valid for a period of time (set by eBay). After this amount of time has passed, the token expires and must be replaced with a new token.
Timestamp dateTime Always This value represents the date and time when eBay processed the request. The time zone of this value is GMT and the format is the ISO 8601 date and time format (YYYY-MM-DDTHH:MM:SS.SSSZ). See the Time Values section in the eBay Features Guide for information about this time format and converting to and from the GMT time zone.

Note: GetCategories and other Trading API calls are designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, this time value reflects the time the cached response was created. Thus, this value is not necessarily when the request was processed. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, this time value does reflect when the request was processed.
Version string Always The version of the response payload schema. Indicates the version of the schema that eBay used to process the request. See the Standard Data for All Calls section in the eBay Features Guide for information on using the response version when troubleshooting CustomCode values that appear in the response.



Detail Controls


DetailLevel

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



Samples

New to making API calls? Please see Making a Call.

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

Available samples:

Sample: Basic Call

Retrieves the categories for a basic keyword.

Description

This sample retrieves the categories for the keyword camera. This is a keyword with a broad range of items, so the response is not very directed.

Input

XML format.

<?xml version="1.0" encoding="utf-8"?>
<GetSuggestedCategoriesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <RequesterCredentials>
    <eBayAuthToken>A*******3</eBayAuthToken>
  </RequesterCredentials>
  <Query>camera</Query>
</GetSuggestedCategoriesRequest>

Output

XML format.
<?xml version="1.0" encoding="UTF-8"?>
<GetSuggestedCategoriesResponse 
  xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2019-11-05T22:37:05.032Z</Timestamp>
  <Ack>Success</Ack>
  <Version>1131</Version>
  <Build>E1131_UNI_API5_19098188_R1</Build>
  <SuggestedCategoryArray>
    <SuggestedCategory>
      <Category>
        <CategoryID>31388</CategoryID>
        <CategoryName>Digital Cameras</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
      </Category>
      <PercentItemFound>77</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>15230</CategoryID>
        <CategoryName>Film Cameras</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentID>69323</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
        <CategoryParentName>Film Photography</CategoryParentName>
      </Category>
      <PercentItemFound>11</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>48638</CategoryID>
        <CategoryName>Security Cameras</CategoryName>
        <CategoryParentID>293</CategoryParentID>
        <CategoryParentID>185067</CategoryParentID>
        <CategoryParentID>48633</CategoryParentID>
        <CategoryParentName>Consumer Electronics</CategoryParentName>
        <CategoryParentName>Surveillance & Smart Home Electronics</CategoryParentName>
        <CategoryParentName>Home Surveillance</CategoryParentName>
      </Category>
      <PercentItemFound>4</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>11724</CategoryID>
        <CategoryName>Camcorders</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
      </Category>
      <PercentItemFound>2</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>88754</CategoryID>
        <CategoryName>Surveillance DVRs & NVRs</CategoryName>
        <CategoryParentID>293</CategoryParentID>
        <CategoryParentID>185067</CategoryParentID>
        <CategoryParentID>48633</CategoryParentID>
        <CategoryParentID>185048</CategoryParentID>
        <CategoryParentName>Consumer Electronics</CategoryParentName>
        <CategoryParentName>Surveillance & Smart Home Electronics</CategoryParentName>
        <CategoryParentName>Home Surveillance</CategoryParentName>
        <CategoryParentName>Home Surveillance Parts & Accessories</CategoryParentName>
      </Category>
      <PercentItemFound>2</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>98923</CategoryID>
        <CategoryName>35mm Cameras</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentID>3326</CategoryParentID>
        <CategoryParentID>101643</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
        <CategoryParentName>Vintage Movie & Photography</CategoryParentName>
        <CategoryParentName>Vintage Cameras</CategoryParentName>
      </Category>
      <PercentItemFound>1</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>9355</CategoryID>
        <CategoryName>Cell Phones & Smartphones</CategoryName>
        <CategoryParentID>15032</CategoryParentID>
        <CategoryParentName>Cell Phones & Accessories</CategoryParentName>
      </Category>
      <PercentItemFound>1</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>185053</CategoryID>
        <CategoryName>IP & Smart Security Camera Systems</CategoryName>
        <CategoryParentID>293</CategoryParentID>
        <CategoryParentID>185067</CategoryParentID>
        <CategoryParentID>48633</CategoryParentID>
        <CategoryParentName>Consumer Electronics</CategoryParentName>
        <CategoryParentName>Surveillance & Smart Home Electronics</CategoryParentName>
        <CategoryParentName>Home Surveillance</CategoryParentName>
      </Category>
      <PercentItemFound>1</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>3323</CategoryID>
        <CategoryName>Lenses</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentID>78997</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
        <CategoryParentName>Lenses & Filters</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>11717</CategoryID>
        <CategoryName>Folding Cameras</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentID>3326</CategoryParentID>
        <CategoryParentID>101643</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
        <CategoryParentName>Vintage Movie & Photography</CategoryParentName>
        <CategoryParentName>Vintage Cameras</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
  </SuggestedCategoryArray>
  <CategoryCount>10</CategoryCount>
</GetSuggestedCategoriesResponse>

Back to list of samples

Sample: Digital Camera search

Retrieves categories for a more restrictive keyword.

Description

This sample retrieves the categories for the keyword digital camera. This is a keyword is a bit more restrictive than the previous query, and the results show a more narrow range of categories in the response.

Input

XML format.

<?xml version="1.0" encoding="utf-8"?>
<GetSuggestedCategoriesRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <RequesterCredentials>
    <eBayAuthToken>A*******3</eBayAuthToken>
  </RequesterCredentials>
  <Query>digital camera</Query>
</GetSuggestedCategoriesRequest>

Output

XML format.
<?xml version="1.0" encoding="UTF-8"?>
<GetSuggestedCategoriesResponse 
  xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2019-11-05T22:37:59.239Z</Timestamp>
  <Ack>Success</Ack>
  <Version>1131</Version>
  <Build>E1131_UNI_API5_19098188_R1</Build>
  <SuggestedCategoryArray>
    <SuggestedCategory>
      <Category>
        <CategoryID>31388</CategoryID>
        <CategoryName>Digital Cameras</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
      </Category>
      <PercentItemFound>99</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>15230</CategoryID>
        <CategoryName>Film Cameras</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentID>69323</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
        <CategoryParentName>Film Photography</CategoryParentName>
      </Category>
      <PercentItemFound>1</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>11724</CategoryID>
        <CategoryName>Camcorders</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>64343</CategoryID>
        <CategoryName>Straps & Hand Grips</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentID>15200</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
        <CategoryParentName>Camera, Drone & Photo Accessories</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>158700</CategoryID>
        <CategoryName>Cameras</CategoryName>
        <CategoryParentID>220</CategoryParentID>
        <CategoryParentID>19071</CategoryParentID>
        <CategoryParentID>1082</CategoryParentID>
        <CategoryParentName>Toys & Hobbies</CategoryParentName>
        <CategoryParentName>Electronic, Battery & Wind-Up</CategoryParentName>
        <CategoryParentName>Electronic & Interactive</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>107894</CategoryID>
        <CategoryName>Cases, Bags & Covers</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentID>15200</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
        <CategoryParentName>Camera, Drone & Photo Accessories</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>48638</CategoryID>
        <CategoryName>Security Cameras</CategoryName>
        <CategoryParentID>293</CategoryParentID>
        <CategoryParentID>185067</CategoryParentID>
        <CategoryParentID>48633</CategoryParentID>
        <CategoryParentName>Consumer Electronics</CategoryParentName>
        <CategoryParentName>Surveillance & Smart Home Electronics</CategoryParentName>
        <CategoryParentName>Home Surveillance</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>9355</CategoryID>
        <CategoryName>Cell Phones & Smartphones</CategoryName>
        <CategoryParentID>15032</CategoryParentID>
        <CategoryParentName>Cell Phones & Accessories</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>88754</CategoryID>
        <CategoryName>Surveillance DVRs & NVRs</CategoryName>
        <CategoryParentID>293</CategoryParentID>
        <CategoryParentID>185067</CategoryParentID>
        <CategoryParentID>48633</CategoryParentID>
        <CategoryParentID>185048</CategoryParentID>
        <CategoryParentName>Consumer Electronics</CategoryParentName>
        <CategoryParentName>Surveillance & Smart Home Electronics</CategoryParentName>
        <CategoryParentName>Home Surveillance</CategoryParentName>
        <CategoryParentName>Home Surveillance Parts & Accessories</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
    <SuggestedCategory>
      <Category>
        <CategoryID>43440</CategoryID>
        <CategoryName>Camera & Camcorder Lights</CategoryName>
        <CategoryParentID>625</CategoryParentID>
        <CategoryParentID>15200</CategoryParentID>
        <CategoryParentName>Cameras & Photo</CategoryParentName>
        <CategoryParentName>Camera, Drone & Photo Accessories</CategoryParentName>
      </Category>
      <PercentItemFound>0</PercentItemFound>
    </SuggestedCategory>
  </SuggestedCategoryArray>
  <CategoryCount>10</CategoryCount>
</GetSuggestedCategoriesResponse>

Back to list of samples



Change History

Change Date Description
1019
2017-06-09
  • CategoryType.CategoryName (modified): The maximum length of a single eBay category name has increased from 30 to 50 characters