Skip to content
English
  • There are no suggestions because the search field is empty.

Shoppable v6 Catalog API

This API endpoint is used to query the entire Shoppable catalog where text keywords result in a list of products.

Shoppable v6 Catalog API Call

Overview

This endpoint is used to query the entire Shoppable product catalog against the given keywords. Users have the ability to
  • filter results by brand and merchant.
  • Paginate the response
  • Get product details like description, images, color, and size information.

 

API EndPoint

POST: https://cloud.shoppable.com/catalog 

Authentication

Authentication is done with two headers in the request header. Both the bearer token and x-shoppable-secret will be provided to you by your Customer Success Manager at Shoppable.  

Request Headers 

  "Authorization": “Bearer <Bearer token that will be provided by shoppable>”, 
  "x-shoppable-secret": “<Shoppable Secret will be provided by shoppable>”
  "Content-Type": "application/json"

 

Request Header authorization parameters when generating your request along with context

Name

Description

Authorization
(string)

Unique token that allows access to authorized users to make calls against the Catalog API.


x-shoppable-secret
(string)

Unique identifier string that together with the authorization bearer,

validates the bearer token    

MerchantID Unique Identifier

Use the GET https://cloud.shoppable.com/merchants endpoint to retrieve the list of merchants associated with your Shoppable account. Each merchant object in the response includes a merchantID, which you will use as the merchantID parameter when making product and catalog API requests.

For example, when calling the Catalog API at https://cloud.shoppable.com/catalog

Click here for Developer Documentation