# Pararius (Netherlands) — 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 rental properties across the Netherlands from Pararius.nl, with filtering by city and detailed property information including pricing, location, and amenities. Access paginated listings to easily discover available rentals that match your needs.

**Category:** Real Estate | **Website:** [pararius.nl/](https://pararius.nl/) | **Docs:** [parse.bot/marketplace/2148de1e-1ac3-43da-8ff3-e383c869cead/pararius-nl-api](https://parse.bot/marketplace/2148de1e-1ac3-43da-8ff3-e383c869cead/pararius-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-pararius-nl-api-2148de1e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Get detailed information for a specific rental listing including full description, all property features, agent info, and photos. The path parameter is the listing's URL path from search_rentals results (the 'path' field on each listing). Returns a single listing's complete data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `path` | string | Yes | The listing path from the URL (e.g., '/appartement-te-huur/amsterdam/bdfb81f0/gamerenstraat'). Available directly from the 'path' field in search_rentals results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pararius-nl-api-2148de1e/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"path":"<string>"}'
```

### search_rentals

Search rental listings on Pararius. Returns a paginated list of available rental properties with key details like price, area, rooms, and agent info. Each page returns approximately 30 listings. Pagination advances by integer page number. Results are ordered by recency (newest first). The total_listings field is a site-rendered string count.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City or region to search in (e.g., 'amsterdam', 'rotterdam', 'den-haag'). Use 'nederland' for all of the Netherlands. |
| `page` | integer | No | Page number (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pararius-nl-api-2148de1e/search_rentals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","page":"<integer>"}'
```
