> 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/marketing-and-offers/find-offers-endpoint.md).

# Find offers endpoint

{% hint style="info" %}
Implementation is **OPTIONAL**
{% endhint %}

**resource**:  /offer

**method**:  *POST*

**Request** :  [**OfferSearchRequest**](/general/request-and-responses/offersearchrequest.md)

**Response**: **List<**[**DefaultOffer**](/general/data-object-description/defaultoffer.md)**> OR List<**[**DiscountOffer**](/general/data-object-description/discountoffer.md)**> OR List<**[**ProductRelatedOffer**](/general/data-object-description/productrelatedoffer.md)**>**

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

```
{
	"personId": "0bcae298-867c-41af-9980-be0d8e828d3e",
	"institutionId": "0bcae304-867c-41af-9980-be0d8e828d4s",
	"langCode": "ET",
	"classification": "PERSONAL",
	"loyaltyCards": [
		{
			"id": "12345",
			"cardNumber": "22103944833292",
			"useBonusOnPayment": false
		}
	]
}
```

{% endtab %}

{% tab title="Response Example" %}

```
{
	"id": "1234",
	"type": "DISCOUNT",
	"discountPercentage": 20,
	"offerPrice": 10,
	"defaultPrice": 12,
	"title": {
		"originalText": "Crazy bonus offer",
		"translations": [
			{
				"ET": "Hull boonus pakkumine"
			}
		]
	},
	"imageUri": "https://myimageurl.com",
	"startDate": "2020-05-04",
	"endDate": "2020-06-04"
}
```

{% endtab %}
{% endtabs %}
