Get Category
HTTP Request
GET https://commerce.zoho.com/storefront/api/v1/categories/{category_id}
Parameters
Parameter | Description |
category_id | string: Unique ID generated by the server for the category. This is used as identifier. |
Request Example
Copiedcurl -i -L -X GET
-H "domain-name:zylkerfashionstore.zohostore.com"
'https://commerce.zoho.com/storefront/api/v1/categories/1706707000000068762?format=json
Success Response
Copied{
"status_message": "success",
"status_code": "0",
"payload": {
"pagination": {
"total_number_of_pages": 0,
"per_page": 50,
"has_more_page": false,
"current_page": 1
},
"currency": {
"symbol": "$",
"code": "USD",
"symbol_formatted": "$",
"code_on_left": true,
"format": "###,##0.00",
"symbol_on_left": true
},
"page": {
"title": "Partywear",
"site_title": "Zylker's Fashion"
},
"category": {
"images": [
{
"alternate_text": "",
"is_placeholder_image": true,
"id": "-1",
"title": "",
"url": "/zs-common/images/no-preview-image.jpg",
"is_featured": true,
"order": 1
}
],
"visibility": true,
"description": "",
"handle": "partywear",
"sort_by_options": [
{
"is_selected": true,
"name": "Most Popular",
"value": "popularity"
},
{
"is_selected": false,
"name": "Most Recent",
"value": "new"
},
{
"is_selected": false,
"name": "Price: High to Low",
"value": "HtoL"
},
{
"is_selected": false,
"name": "Price: Low to High",
"value": "LtoH"
}
],
"bread_crumbs": [
],
"specifications": [
],
"url": "/categories/partywear/1706707000000068762",
"products": [
],
"parent_category_id": "0",
"sub_categories": [
],
"category_id": "1706707000000068762",
"name": "Partywear",
"number_columns": 2,
"seo": {
"description": "",
"keyword": "",
"title": "Partywear"
},
"order": 1
}
},
"extra": {
"rating_details": {
}
},
"api_kind": "kind#category"
}
Show full
Show less