Product Classifier API (1.0.0)

Download OpenAPI specification:Download

Product Classifier support: support@productclassifier.com License: Private

Product Classifier is an AI-powered API that categorizes products from descriptions, matching them to the most relevant category in either Shopify’s or Google’s product taxonomy.

Categorize a product

Classifies a product based on its description using AI-powered analysis and vector search through product taxonomies.

The API returns the most relevant category match along with category metadata such as ID, path, and tags.

Authorizations:
ApiKeyAuth
Request Body schema: application/json
product
required
string <= 2048 characters

The product description to classify

taxonomy
string
Enum: "Google" "Shopify"

The product taxonomy to use for classification. If not specified, uses the project's default taxonomy setting.

Responses

Request samples

Content type
application/json
Example
{
  • "product": "blue cotton t-shirt for men"
}

Response samples

Content type
application/json
Example
{
  • "success": true,
  • "categoryFound": true,
  • "categoryId": "1604",
  • "categoryPath": "Apparel & Accessories > Clothing > Shirts & Tops",
  • "categoryLine": "Apparel & Accessories > Clothing > Shirts & Tops > Shirts",
  • "categoryTags": [
    ]
}