> ## Documentation Index
> Fetch the complete documentation index at: https://anyhouse.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Listing Types

> Reference of property listing types (category IDs) used in the AnyHouse Listings API.

## Overview

When filtering listings with **GET /api/listings**, you can use the `listing_type` query parameter to restrict results to a specific property category. Each category has a numeric ID and multilingual titles.

Use the ID in your request, for example:

```
GET https://anyhouse.app/api/listings?listing_type=1
```

***

## Listing type reference

| ID | English    | Spanish      | Dutch       | French          |
| -- | ---------- | ------------ | ----------- | --------------- |
| 1  | Apartment  | Apartamentos | Appartement | Appartement     |
| 2  | Villa      | Villa        | Villa       | Villa           |
| 3  | Land       | Solar        | Land        | Atterrir        |
| 4  | Penthouse  | Penthouse    | Penthouse   | Penthouse       |
| 5  | Townhouse  | Townhouse    | Stadswoning | Maison de ville |
| 6  | Commercial | Comercial    | Commercieel | Commercial      |

***

## Usage in the Listings API

* **Parameter:** `listing_type`
* **Type:** number (integer)
* **Example:** `?listing_type=2` returns only villas.
* Omit `listing_type` to get all property types.

See [Listings](/listings) for full API documentation.
