GET
/
{alias}
/
catalog
/
looks
curl --request GET \
  --url https://api.dooki.com.br/v2/{alias}/catalog/looks \
  --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.000000",
        "timezone_type": 3,
        "timezone": "America/Sao_Paulo"
      },
      "updated_at": {
        "date": "2000-08-17 10:24:24.000000",
        "timezone_type": 3,
        "timezone": "America/Sao_Paulo"
      }
    }
  ],
  "meta": {
    "meta": {
      "pagination": {
        "total": "10",
        "count": "30",
        "per_page": "10",
        "current_page": "1",
        "total_pages": "3",
        "links": {
          "previous": "",
          "next": ""
        }
      }
    }
  }
}

Authorizations

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

Path Parameters

alias
string
required

Alias da loja

Query Parameters

includes
string

Inclui dados adicionais (ex: products)

Response

200
application/json

Lista de looks

The response is of type object.