# Amenity 목록 가져오기

## Get amenities

<mark style="color:blue;">`GET`</mark> `https://backends.xyz/api/home/amenities/`

This endpoint allows you to get free cakes.

#### Headers

| Name           | Type   | Description                                                    |
| -------------- | ------ | -------------------------------------------------------------- |
| Authentication | string | Authentication token to track down who is emptying our stocks. |

{% tabs %}
{% tab title="200 amenities successfully retrieved." %}

```javascript
[
    {
        "pk": 12,
        "value": "반려동물 입실 가능",
        "help_text": "보조 동물은 언제든지 동반할 수 있습니다"
    },
    {
        "pk": 43,
        "value": "24시간 체크인",
        "help_text": "열쇠 보관함, 디지털 도어록, 초인종, 또는 언제든 연락이 가능한 사람"
    }
]
```

{% endtab %}
{% endtabs %}
