Discover/Pararius API
live

Pararius APIPararius.nl

Search and retrieve rental property listings from Pararius.nl. Access pricing, area, rooms, agent info, photos, and full property features via 2 endpoints.

Endpoint health
verified 4d ago
get_listing_details
search_rentals
2/2 passing latest checkself-healing
Endpoints
2
Updated
22d ago

What is the Pararius API?

The Pararius.nl API provides access to rental property listings from the Netherlands' largest rental housing platform via 2 endpoints. search_rentals returns paginated results — approximately 30 listings per page — covering price, area, rooms, interior type, and agent info. get_listing_details returns full property descriptions, up to 10 photos, structured feature sets, and agent contact details for any individual listing.

Try it
City or region to search in (e.g., 'amsterdam', 'rotterdam', 'den-haag'). Use 'nederland' for all of the Netherlands.
Page number (1-based).
api.parse.bot/scraper/de2b7dd4-2f82-4fac-b6dd-fb9ac24639a5/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/de2b7dd4-2f82-4fac-b6dd-fb9ac24639a5/search_rentals?city=amsterdam&page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace pararius-nl-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Pararius rental listings SDK — search and inspect properties."""
from parse_apis.pararius_rental_listings_api import Pararius, City_, ListingNotFound

client = Pararius()

# Search Amsterdam rentals — limit caps total items fetched across all pages.
for listing in client.city(City_.AMSTERDAM).search(limit=5):
    print(listing.title, listing.price, listing.area)

# Drill into the first listing's full details.
listing = client.city(City_.ROTTERDAM).search(limit=1).first()
if listing:
    detail = listing.details()
    print(detail.title, detail.price)
    print(detail.address, detail.description[:120])
    for key, val in detail.features.items():
        print(f"  {key}: {val}")

# Handle a missing listing gracefully.
try:
    bogus = client.city("utrecht").search(limit=1).first()
    if bogus:
        bogus.details()
except ListingNotFound as exc:
    print(f"listing gone: {exc.path}")

print("exercised: city.search / listing.details / ListingNotFound")
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
citystringCity or region to search in (e.g., 'amsterdam', 'rotterdam', 'den-haag'). Use 'nederland' for all of the Netherlands.
pageintegerPage number (1-based).
Response
{
  "type": "object",
  "fields": {
    "city": "string, the city/region searched",
    "page": "integer, current page number",
    "count": "integer, number of listings returned on this page",
    "listings": "array of listing objects with title, url, path, address, price, area, rooms, interior, agent",
    "total_pages": "integer, total number of pages available",
    "total_listings": "string, total number of listings displayed by the site"
  },
  "sample": {
    "data": {
      "city": "amsterdam",
      "page": 1,
      "count": 32,
      "listings": [
        {
          "url": "https://www.pararius.nl/appartement-te-huur/amsterdam/ca325ca0/marco-polostraat",
          "area": "51 m²",
          "path": "/appartement-te-huur/amsterdam/ca325ca0/marco-polostraat",
          "agent": "Grand Relocation",
          "price": "€ 2.350 per maand",
          "rooms": "4 kamers",
          "title": "Appartement Marco Polostraat 195 1",
          "address": "1057 WK Amsterdam (Hoofdweg e.o.)",
          "interior": "Gestoffeerd"
        }
      ],
      "total_pages": 28,
      "total_listings": "831"
    },
    "status": "success"
  }
}

About the Pararius API

Search Rental Listings

The search_rentals endpoint accepts a city parameter (e.g., amsterdam, rotterdam, den-haag) or nederland to query the entire country. Results are paginated with roughly 30 listings per page; the response includes total_pages and total_listings so you can walk through the full result set. Each listing object in the listings array contains title, url, address, price, area, rooms, interior, and agent — enough to build a filtered rental search tool or comparison table without fetching individual detail pages.

Listing Detail Data

The get_listing_details endpoint takes a path value pulled directly from the url field in search_rentals results (strip the domain prefix). It returns the full description text, a features object with key-value pairs covering attributes like build year, energy label, and floor area, a photos array of up to 10 image URLs, and the monthly price. The address field provides postal code and neighborhood. This endpoint is suited for building listing detail pages, enriching a property database, or running feature-level comparisons across rentals.

Coverage and Pagination

Pararius.nl covers rental properties across all Dutch cities and regions. The page parameter in search_rentals is 1-based, and you can determine how many pages exist from total_pages in the first response. City slugs follow Pararius URL conventions — hyphenated lowercase, matching how the site formats city names in its own listing URLs.

Reliability & maintenanceVerified

The Pararius API is a managed, monitored endpoint for Pararius.nl — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when Pararius.nl changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official Pararius.nl API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a rental price monitor that tracks asking rents by city using price and city fields from search_rentals.
  • Aggregate energy label data across listings using the features object returned by get_listing_details.
  • Create a neighborhood comparison tool using address, area, and rooms fields across paginated search results.
  • Compile a photo gallery of available rentals by extracting the photos array from listing detail responses.
  • Track which real estate agents have the most active listings by counting agent values across search results.
  • Build a new-listing alert system by periodically querying search_rentals for a given city and diffing url fields.
  • Populate a property database with build year, interior type, and floor area from the features and interior response fields.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Pararius.nl offer an official developer API?+
Pararius does not publish a public developer API or documented REST endpoints for third-party use. This Parse API is the practical way to access structured Pararius listing data programmatically.
What does the `features` object in `get_listing_details` contain?+
The features object contains key-value pairs of property attributes as listed on the detail page — this can include items like floor area, number of rooms, build year, energy label, interior type, and other property-specific fields. The exact keys vary by listing depending on what the landlord or agent has provided.
Can I filter search results by price range, property type, or number of rooms?+
The search_rentals endpoint currently filters by city and page only. It does not expose price range, property type, or room count as query parameters. You can fork this API on Parse and revise it to add those filter parameters.
Does the API cover buy-to-own (koopwoningen) listings, not just rentals?+
Not currently. Both endpoints are scoped to rental listings only. You can fork this API on Parse and revise it to add an endpoint targeting Pararius sale listings.
How fresh is the listing data, and are sold-out or rented properties included?+
The API returns listings as they appear on Pararius at the time of the request. Properties that have been rented out and removed from Pararius will not appear in results. There is no historical or archived listing endpoint; only currently active listings are accessible.
Page content last updated . Spec covers 2 endpoints from Pararius.nl.
Related APIs in Real EstateSee all →
pararius.com API
Search and browse rental property listings on Pararius.com. Filter by city, price, size, and furnishing; retrieve full property details; look up listings by estate agent; and autocomplete location queries.
funda.nl API
Search for property listings on Funda.nl, the largest Dutch real estate platform. Access prices, addresses, property details, and agent contact information across Dutch cities and neighbourhoods. Supports paginated browsing and bulk retrieval of listings by area.
huislijn.nl API
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.
rentals.ca API
Search and browse rental listings across Canada by city or neighbourhood, and view detailed property information including prices, amenities, and availability. Find your next home by filtering thousands of rental properties on Rentals.ca in real-time.
holland2stay.com API
Search and browse rental properties across Holland2Stay with access to pricing, availability, location details, and direct booking links. Filter listings by city and availability status to find suitable accommodation in the Netherlands.
jaap.nl API
Search and browse housing listings for sale or rent across the Netherlands with detailed property information including photos, characteristics, and agent details. Find homes by location using autocomplete suggestions and easily navigate through results with pagination.
streeteasy.com API
Search and browse NYC apartment rentals to find detailed property information including photos, amenities, pricing, and direct contact details for brokers and agents. Filter through available listings and access comprehensive rental data to help you discover your next home in New York City.
rent.com API
Browse and extract rental property data from Rent.com. Search listings by location and filter by beds, baths, price, and pet policy. Retrieve full property details, floor plans, unit availability, amenities, nearby schools, points of interest, and active specials.