# Huislijn — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse housing listings on huislijn.nl to find properties for sale, rental, or vacation stays, and view detailed information about specific homes. Get access to the newest listings posted on the platform to stay updated on available properties.

**Category:** Real Estate | **Website:** [huislijn.nl/](https://huislijn.nl/) | **Docs:** [parse.bot/marketplace/564284f2-f4c0-4a57-b113-272c0ec7aa60/huislijn-nl-api](https://parse.bot/marketplace/564284f2-f4c0-4a57-b113-272c0ec7aa60/huislijn-nl-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-huislijn-nl-api-564284f2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_detail

Retrieve full details of a single property listing by its URL path. Returns the page title, structured feature groups (Algemeen, Woningdetails, Overige), description text, listing-agent info, and a list of similar nearby properties. The URL path is obtainable from search_for_sale_listings or get_newest_listings results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Listing URL path starting with / (e.g. /koopwoning/nederland/zuid-holland/4379230/burgemeester-elsenlaan-323-f509-rijswijk). Obtainable from search_for_sale_listings or get_newest_listings results[*].link. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-huislijn-nl-api-564284f2/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_newest_listings

Retrieve the most recently added listings, filtered by listing type (sale or rent) and a days-lookback window. Returns the same listing-summary structure as the search endpoint. The total_results reflects how many listings matched the recency filter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `days` | string | No | Days lookback as a negative integer string (e.g. '-3' for last 3 days, '-7' for last 7 days). |
| `type` | string | No | Listing type: 'sale' or 'rent'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-huislijn-nl-api-564284f2/get_newest_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"days":"<string>","type":"<string>"}'
```

### search_for_sale_listings

Search for homes for sale across the Netherlands. Supports price-range filtering and pagination. Each page returns up to ~15 listing summaries with structured property data (rooms, size, year built, energy label). The total_results count may be null when the site omits it.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `price_from` | integer | No | Minimum price filter in EUR. |
| `price_to` | integer | No | Maximum price filter in EUR. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-huislijn-nl-api-564284f2/search_for_sale_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","price_from":"<integer>","price_to":"<integer>"}'
```
