| Field | Required | Description |
|---|---|---|
| api-token | Yes | Authentication token provided by VasyERP |
| limit | Yes | Number of product records to retrieve per request |
| offset | Yes | Number of records to skip for pagination |
limit and offset parameters when retrieving large product datasets.curl --location '/api/v1/products?limit=2&offset=0' \
--header 'api-token: {{.in-api-token}}'{
"status": true,
"message": "Product List",
"code": "200",
"response": {
"totalCount": 12751,
"productList": [
{
"productId": 18313750,
"discount": 2998.72,
"discountType": "amount",
"itemCode": "BAR071",
"productName": "Oppo Reno 14 Pro",
"mrp": 35999.0,
"sellingPrice": 33000.28,
"hsnCode": "85171300",
"active": true,
"activeOnline": false,
"description": "<p><br></p>",
"shortDescription": "",
"lastModifiedDate": "2026-06-17 15:36:46.804508+05:30",
"productType": "Finished",
"brand": "Oppo",
"category": "Smartphone",
"department": "Other",
"lastModifiedBy": "my business",
"measurement": "PIECES"
},
{
"productId": 18313749,
"discount": 0.0,
"discountType": "percentage",
"itemCode": "BAR067",
"productName": "Dairy Milk Silk",
"mrp": 118.0,
"sellingPrice": 118.0,
"hsnCode": "",
"active": true,
"activeOnline": false,
"description": "<p><br></p>",
"shortDescription": "",
"lastModifiedDate": "2026-06-09 15:25:28.780838+05:30",
"productType": "Finished",
"brand": "Cadbury",
"category": "Fresh",
"department": "Food",
"lastModifiedBy": "my business",
"measurement": "tablet"
}
]
}
}