GET
/
{alias}
/
catalog
/
looks
/
{id}
curl --request GET \
  --url https://api.dooki.com.br/v2/{alias}/catalog/looks/{id} \
  --header 'User-Secret-Key: <api-key>' \
  --header 'User-Token: <api-key>'
{
  "data": [
    {
      "id": 123,
      "active": true,
      "name": "Nome do Look",
      "slug": "nome-do-look",
      "description": "Descrição do look",
      "total_products": 123,
      "url": "<string>",
      "products_ids": [
        1,
        2,
        3,
        4,
        5
      ],
      "total_price": 123,
      "total_price_formated": "<string>",
      "installments": {
        "max_installment": 123,
        "max_installment_value": 123,
        "amount": 123,
        "text": "<string>",
        "text_with_tax": "<string>",
        "text_discount_percent": "<string>",
        "text_discount": "<string>"
      },
      "created_at": {
        "date": "2000-08-17 10:24:24",
        "timezone_type": 3,
        "timezone": "America/Sao_Paulo"
      },
      "updated_at": {
        "date": "2000-08-17 10:24:24",
        "timezone_type": 3,
        "timezone": "America/Sao_Paulo"
      }
    }
  ]
}

Authorizations

User-Token
string
header
required
User-Secret-Key
string
header
required

Path Parameters

alias
string
required

Alias da loja

id
integer
required

ID do look

Query Parameters

includes
string

Inclui dados adicionais (ex: products)

Response

200
application/json

Detalhes do look

The response is of type object.