Skip to content

Product Listing

Retrieves all SKUs present on the Fynd Platform at the company level, supporting optional filters:

  • Pagination (page_no, page_size) for large datasets.
  • SKU filters to retrieve only specific products.
  • Ensures consistent real-time product visibility across third-party systems and Fynd.

Method: GET
Scheme: HTTPS
Endpoint: https://{{host}}/ims/v3/listings

Try out Fynd Konnect's Product Listing Endpoint


Common Request Header

HeaderMandatoryDescription
x-access-tokenYesAccess token used for authenticating API requests to Fynd Konnect.

Query

page_nointeger

The current page number of the request

page_sizeinteger

Number of items per page (max 500)

skusstring

Comma-separated SKUs (max 10) to fetch certain product listings

Success Response

dataArray of objects

Array of product listing objects

metaobject

Response metadata for product listings

API Call Example

curl -i -X GET \
  'https://fyndkonnect.konnect.uat.fyndx1.de/ims/v3/listings?page_no=string&page_size=string&skus=string' \
  -H 'x-access-token: YOUR_API_KEY_HERE'