Product Count
Fetches the total number of SKUs present in the Fynd inventory management system at the company level. Useful for:
- Monitoring SKU volume for reports or inventory audits.
- Quickly verifying if any new product data sync is necessary before additional calls.
Method:
GET
Scheme:HTTPS
Endpoint:https://{{host}}/ims/v3/listings/count
Try out Fynd Konnect's Product Count Endpoint
Common Request Header
Header | Mandatory | Description |
---|---|---|
x-access-token | Yes | Access token used for authenticating API requests to Fynd Konnect |
x-batch-token | No | TRUE or FALSE - Flag to enable batch processing |
Headers
x-batch-tokenstring
Flag indicating batch processing for the product count
Enumtruefalse
Success Response
dataobject
Data object containing listing counts
metaobject
Response metadata for product count
API Call Example
- Fynd Konnect [Sandbox] https://fyndkonnect.konnect.uat.fyndx1.de/ims/v3/listings/count
- Ginesys <> Konnect [Sandbox] https://ginesys.konnect.uat.fyndx1.de/ims/v3/listings/count
- Unicommerce <> Konnect [Sandbox] https://unicommerce.konnect.uat.fyndx1.de/ims/v3/listings/count
curl -i -X GET \
https://fyndkonnect.konnect.uat.fyndx1.de/ims/v3/listings/count \
-H 'x-access-token: YOUR_API_KEY_HERE' \
-H 'x-batch-product: true'
Response
application/json
{ "data": { "listing_count": 55050 }, "meta": { "ack_id": "ef0f3996-d414-134a-b9e9-09658a5cb781", "integrationId": "63b8e31227ah5327f0affee7", "time": "2025-01-31T06:58:37.608+00:00", "status": "SUCCESS" } }