> 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-name-search.md).

# Product name search endpoint

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

**resource**:  /product/search/name

**method**:  *POST*

**Request** :  [ProductSearchRequest](/general/request-and-responses/productsearchrequest.md)

**Response**: List<[Product](/general/data-object-description/product.md)>

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

```
{
    "type": "SELF_SERVICE",
    "name": "Kiirka",
    "langCode": "ET",
    "personId": "1abcsd",
    "institutionId": "1ABCS"
}
```

{% endtab %}

{% tab title="Response Example" %}

```
[
	{
		"id": "1ABC",
		"barcode": "ABC-abc-1234",
		"type": "SINGLE",
		"translatableName": {
			"originalText": "HelenOats500g",
			"translations": [
				{
					"ET": "Helenkiirkaeraheleb500g"
				}
			]
		},
		"translatableDescription": {
			"originalText": "OatsmadeinEstonia",
			"translations": [
				{
					"ET": "Eestistoodetudkiirkaerahelbed"
				}
			]
		},
		"quantity": {
			"unit": "KILOGRAM",
			"value": "1.03"
		},
		"price": {
			"addition": {
				"type": "DSC",
				"sum": 1,
				"rate": 10
			},
			"vat": {
				"sumWithVAT": 12,
				"sumWithoutVAT": 10,
				"VATSum": 2,
				"VATRate": 20
			},
			"total": 12
		},
		"weightItem": false,
		"information": {
			"imageUrl": "https: //my.outs"
		},
		"inspections": [
			{
				"action": "INSPECT",
				"type": "MIN_AGE",
				"age": 18
			},
			{
				"action": "RESTICT",
				"type": "MAX_TIME",
				"time": "22: 00: 00",
				"timezone": "Europe/Tallinn"
			}
		],
		"campaigns": [
			{
				"name": "BigDiscountCampaign",
				"code": "B00000000501",
				"operation": "total>=50?total*0.98: total"
			}
		],
		"subProducts": null,
		"categories": [
			{
				"id": "1B",
				"translatableName": {
					"originalText": "Cereals",
					"translations": [
						{
							"ET": "Teraviljad"
						}
					]
				},
				"numberOfProducts": 500,
				"parentId": "1A"
			}
		]
	}
]
```

{% endtab %}
{% endtabs %}
