# seals

Este objeto é utilizado para exibir os selos de segurança da loja, atestando aos consumidores uma maior proteção para compra. A Tray possui atualmente integração com 2 selos: Loja Protegida e [Ebit.](https://basedeconhecimento.tray.com.br/hc/pt-br/articles/6758038862619-Ebit-Integra%C3%A7%C3%A3o)

{% hint style="info" %}
**Disponível para uso em todas as páginas.**
{% endhint %}

### Atributos disponíveis​ <a href="#atributos-disponiveis" id="atributos-disponiveis"></a>

Ao utilizar os atributos abaixo, os selos só serão retornados caso estejam configurados na loja.

| Atributos                | Característica                                         |
| ------------------------ | ------------------------------------------------------ |
| `{{ seals.ebit }}`       | Retorna o HTML com a imagem do selo do Ebit.           |
| `{{ seals.hackersafe }}` | Retorna o HTML com a imagem do selo de Loja Protegida. |

### Como Usar

Abaixo você pode ver um exemplo de código com a utilização do Objeto `seals`:

{% code title="Input" %}

```html
<ul class="security-seals">
    {% if seals.ebit %}
        <li class="ebit-seal">
            {{ seals.ebit }}
        </li>
    {% endif %}
    
    {% if seals.hackersafe %}
        <li class="loja-protegida-seal">
            {{ seals.hackersafe }}
        </li>
    {% endif %}
</ul>
```

{% endcode %}

{% code title="Output" %}

```html
<ul class="security-seals">
    <li class="ebit-seal">
        <img src="https://caminhoimg.com.br/selo_ebit.png" 
        alt="Selo Ebit" title="Selo Ebit" border="0">
    </li>
    <li class="loja-protegida-seal">
        <img src="https://caminhoimg.com.br/selo_lojaprotegida.png" 
        alt="Loja Protegida" title="Loja Protegida" border="0">
    </li>
</ul>
```

{% 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/seals.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.
