> For the complete documentation index, see [llms.txt](https://developer.smarts.ee/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.smarts.ee/integration/custom-integration/product-search-1/product-category-search.md).

# Product category search endpoint

{% hint style="danger" %}
Implementation is **REQUIRED**
{% endhint %}

**resource**:  /product/category

**method**:  *POST*

**Request** :  [InstitutionRequest](/general/request-and-responses/institutionrequest.md)

**Response**: [L](/general/request-and-responses/pageable.md)ist<[Category](/general/data-object-description/category.md)>

{% tabs %}
{% tab title="Request Example" %}

```
{

    "langCode": "ET",
    "personId": "1abcsd",
    "institutionId": "1ABCS"
}
```

{% endtab %}

{% tab title="Response Example" %}

```
[
	{
		"id": "1B",
		"translatableName": {
			"originalText": "Cereals",
			"translations": [
				{
					"ET": "Teraviljad"
				}
			]
		},
		"numberOfProducts": 500,
		"parentId": "1A"
	}
]
```

{% endtab %}
{% endtabs %}
