> For the complete documentation index, see [llms.txt](https://documentation.themembers.dev.br/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.themembers.dev.br/api-gerenciamento-de-usuarios/referencia-da-api/produtos.md).

# Produtos

{% hint style="info" %}
**Importante**: Sempre altere os dados entre chaves com o parâmetro respectivo.&#x20;

**Exemplo prático**:

No metodo estará descrevendo a rota com&#x6F;**:**

URL\_BASE/users/show-id/{id}/`{token_do_desenvolvedor}/{token_da_plataforma}`

Como ficará na prática:&#x20;

URL\_BASE/users/show-id/*<mark style="background-color:purple;">66caec96-...432</mark>*/*<mark style="color:green;background-color:purple;">66caec96-4749-...e07ed7</mark>*/*<mark style="background-color:purple;">66caec96-...4324</mark>*
{% endhint %}

## Buscar todos os produtos

<mark style="color:$success;">`GET`</mark>`URL_BASE/products/all-products/{token_do_desenvolvedor}/{token_da_plataforma}`

Possíveis retornos da requisição:

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "data": [
        {
            "id": "11111111-aaaa-4444-bbbb-1234567890ab",
            "title": "Curso Avançado de Marketing Digital",
            "description": "Aprenda estratégias avançadas de marketing digital para aumentar suas vendas online.",
            "period": "12 meses",
            "value": 997.50,
            "product_id": "prod-curso-marketing-001",
            "lifetime": 0,
            "status": "active",
            "type": "Recorrente",
            "checkout": "internal",
            "sales_page_url": "https://minhaempresa.com/curso-marketing-digital",
            "support_email": "suporte@minhaempresa.com",
            "trial": "7 dias",
            "upsell": "Pacote VIP",
            "upsell_url": "https://minhaempresa.com/pacote-vip",
            "checkout_id": 101,
            "interval": 1,
            "interval_type": "month",
            "created_at": "2025-01-15T10:30:00.000000Z",
            "updated_at": "2025-07-01T14:00:00.000000Z"
        }
    ]
}
```

{% endtab %}
{% endtabs %}

## Buscar todos os produtos

<mark style="color:$success;">`GET`</mark>`URL_BASE/products/show-product/{product_id}/{token_do_desenvolvedor}/{token_da_plataforma}`

Possíveis retornos da requisição:

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "data": [
        {
            "id": "11111111-aaaa-4444-bbbb-1234567890ab",
            "title": "Curso Avançado de Marketing Digital",
            "description": "Aprenda estratégias avançadas de marketing digital para aumentar suas vendas online.",
            "period": "12 meses",
            "value": 997.50,
            "product_id": "prod-curso-marketing-001",
            "lifetime": 0,
            "status": "active",
            "type": "Recorrente",
            "checkout": "internal",
            "sales_page_url": "https://minhaempresa.com/curso-marketing-digital",
            "support_email": "suporte@minhaempresa.com",
            "trial": "7 dias",
            "upsell": "Pacote VIP",
            "upsell_url": "https://minhaempresa.com/pacote-vip",
            "checkout_id": 101,
            "interval": 1,
            "interval_type": "month",
            "created_at": "2025-01-15T10:30:00.000000Z",
            "updated_at": "2025-07-01T14:00:00.000000Z"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
