← Home Get Amenities

Get Amenitites

GEThttps://api.bayut.com/v1/amenities

The endpoint lists all the amenities to be used in create/update properties endpoints.

🔐 Bearer Token: Provide your bearer token in the Authorization header when making requests to protected resources.
Query Parameters
NameTypeRequiredDescriptionExample
titlestringOptionalThe title filter, ameniti(es) with matching title would be returned.Heating
Response Schema
NameTypeRequiredDescriptionExample
dataobjectOptionalRepresents an amenity or feature associated with a property.
idintegerOptionalUnique identifier for the amenity.12
externalTitleobjectOptional
typestringOptionalType of amenity (e.g., 'boolean', 'select', 'number', etc.).boolean
indexintegerOptionalInternal index/order for display grouping or categorization.1
optionsarray[object]Optional
portalsarrayOptionalList of portals that support or display this amenity.
defaultValuestringOptional
purposestringOptional
slugstringOptionalSlugified version of the amenity title used for internal referencing.swimming-pool
categoriesarrayOptionalCategories associated with this amenity.
externalTooltipobjectOptional
displayOrderintegerOptional
linksobjectOptionalThe links to pages.
firststringOptionalThe link to first page.
laststringOptionalThe link to last page.
prevstringOptionalThe link to previous page.
nextstringOptionalThe link to next page.
metaobjectOptionalMeta about pagination data.
current_pageintegerOptionalThe page you are currently on.
fromintegerOptionalThe first page of the paginated results.
pathstringOptionalThe path of the current page.
per_pageintegerOptionalThe number of results displayed per page.
tointegerOptionalThe last page of the paginated results.
totalintegerOptionalThe total number of results.
Responses
200
401⚠️
403⚠️
Code Examples
curl --location 'https://api.bayut.com/v1/amenities' \
--header 'Authorization: Bearer <token>'
{
    "data": [
        {
            "id": 4,
            "title": {
                "en": "Barbeque Area",
                "ar": "مكان مخصص للشواء"
            },
            "slug": "barbeque-area",
            "group": {
                "en": "Recreation and Family",
                "ar": "الترفيه والأسرة"
            }
        }
    ]
}