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'
Response
application/json
{ "data": [ {}, {}, {} ], "meta": { "ack_id": "55a7bd5d-4dbd-46ed-8cc9-8677e9d691fa", "integrationId": "63b8e31227ah5327f0affee7", "time": "2025-01-31T06:58:37.608+00:00", "status": "SUCCESS" } }