# productFeatured

Esse objeto retorna os produtos em destaque na categoria atual. As informações retornadas são as mesmas do objeto [**products**](/themes/construindo-seu-template/referencias/objetos/products.md).

{% hint style="warning" %}
**Disponível para uso na página:** catalog
{% endhint %}

{% hint style="info" %}
Para saber mais sobre: [Selos de produtos](https://basedeconhecimento.tray.com.br/hc/pt-br/articles/6735886863515-Selos-de-Produtos-Destaque-Lan%C3%A7amento-e-Adicional)
{% endhint %}

{% code title="Input" %}

```html
<a href="{{ productFeatured.link }}" title="{{ productFeatured.name }}">
    <img src="{{ productFeatured.images[0].large }}" alt="{{ productFeatured.name }}">
</a>
```

{% endcode %}

{% code title="Output" %}

```html
<a href="https://sualoja.com.br/produto-b" title="Produto B">
    <img src="https://caminhoimg.com.br/produto-b.png" alt="Produto B">
</a>
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://partners.tray.com.br/themes/construindo-seu-template/referencias/objetos/productfeatured.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
