# Product bacrode search endpoint

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

**resource**:  /product/search/barcode

**method**:  *POST*

**Request** :  [ProductSearchRequest](https://developer.smarts.ee/general/request-and-responses/productsearchrequest)

**Response**: [Product](https://developer.smarts.ee/general/data-object-description/product)

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

```
{
    "type": "SELF_SERVICE",
    "barcode": "1ABCS",
    "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 %}
