Discover/Jaap API
live

Jaap APIjaap.nl

Access Dutch housing listings for sale and rent via the huislijn.nl API. Search by location, get property details, photos, agent info, and autocomplete suggestions.

Endpoint health
verified 3d ago
get_property_detail
search_properties_for_sale
search_properties_for_rent
get_search_suggestions
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Jaap API?

This API exposes 4 endpoints for querying Dutch residential property listings from huislijn.nl, the successor to jaap.nl. Use search_properties_for_sale or search_properties_for_rent to retrieve paginated listings across the Netherlands filtered by city or municipality, then call get_property_detail to pull full descriptions, photos, characteristics, and agent contact details for any individual listing.

Try it
Page number for pagination.
City, municipality, or region name to filter results (e.g. 'Amsterdam', 'Rotterdam'). Omitting returns nationwide listings.
api.parse.bot/scraper/7a9e3a9c-c056-47eb-b200-3bd54bd9cfd6/<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/7a9e3a9c-c056-47eb-b200-3bd54bd9cfd6/search_properties_for_sale?page=1&location=Amsterdam' \
  -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 jaap-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: Huislijn SDK — search Dutch housing listings, drill into details."""
from parse_apis.huislijn_successor_to_jaap_nl_api import Huislijn, PropertyNotFound

client = Huislijn()

# Search for sale listings in Amsterdam — limit caps total items fetched.
for listing in client.salesearchresults.search(location="Amsterdam", limit=3):
    print(listing.street, listing.price, listing.specs)

# Drill into one listing's full details via the typed navigation op.
listing = client.salesearchresults.search(location="Rotterdam", limit=1).first()
if listing:
    detail = listing.details()
    print(detail.title, detail.agent.name, detail.agent.phone)
    print(f"Photos: {len(detail.photos)}, Characteristics: {len(detail.characteristics)}")

# Search rental listings.
for rental in client.rentalsearchresults.search(location="Utrecht", limit=3):
    print(rental.street, rental.price, rental.url)

# Location autocomplete to resolve a query before searching.
for suggestion in client.suggestionresults.search(query="Den Haag", limit=3):
    print(suggestion.name, suggestion.hits, suggestion.type)

# Typed error handling when a listing URL is invalid/removed.
try:
    gone = client.propertydetails.get(url="https://www.huislijn.nl/koopwoning/nederland/noord-holland/0000000/nonexistent")
    print(gone.title)
except PropertyNotFound as exc:
    print(f"Property not found: {exc.url}")

print("exercised: salesearchresults.search / listing.details / rentalsearchresults.search / suggestionresults.search / propertydetails.get")
All endpoints · 4 totalmissing one? ·

Search for properties for sale in the Netherlands. Returns paginated listing results with street address, price, property type, and listing URL. When no location is provided, returns listings from across the country. Paginates via integer page number.

Input
ParamTypeDescription
pageintegerPage number for pagination.
locationstringCity, municipality, or region name to filter results (e.g. 'Amsterdam', 'Rotterdam'). Omitting returns nationwide listings.
Response
{
  "type": "object",
  "fields": {
    "count": "integer number of listings on the current page",
    "listings": "array of listing objects with street, title, price, specs, and url",
    "total_pages": "integer total number of pages available"
  },
  "sample": {
    "data": {
      "count": 13,
      "listings": [
        {
          "url": "https://www.huislijn.nl/koopwoning/nederland/noord-holland/4387136/welnastraat-293-amsterdam",
          "price": "285000.00",
          "specs": "Galerijflat",
          "title": "Welnastraat 2931096GJ Amsterdam",
          "street": "Welnastraat 293"
        }
      ],
      "total_pages": 1
    },
    "status": "success"
  }
}

About the Jaap API

Search and Filter Listings

Both search_properties_for_sale and search_properties_for_rent accept an optional location parameter (city, municipality, or region name such as 'Amsterdam' or 'Rotterdam') and an optional page integer for pagination. Each response returns a listings array of objects containing street, title, price, specs, and url, along with a count of results on the current page and total_pages so you can iterate through the full result set. Omitting location returns listings nationwide.

Property Detail

get_property_detail takes a full huislijn.nl listing URL and returns structured data for that property: a title (address and location), a description string, a characteristics object with key-value specification pairs (such as surface area, build year, and energy label), a photos array of image URLs, and an agent object containing the listing agent's name and phone number.

Location Autocomplete

get_search_suggestions accepts a query string and returns an items array of suggestion objects, each with a type (city, municipality, or street), name, hits (the number of matching listings), and geographic search fields. The original query string is echoed back in the response. This endpoint is useful for building location-aware search interfaces that match how users think about Dutch geography.

Reliability & maintenanceVerified

The Jaap API is a managed, monitored endpoint for jaap.nl — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when jaap.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 jaap.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
3d ago
Latest check
4/4 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
  • Aggregate nationwide for-sale listings filtered by city to build a Dutch property search tool
  • Monitor rental listing counts and prices across Dutch municipalities over time
  • Extract agent contact details from get_property_detail to build a broker directory
  • Pull characteristics data (surface area, build year, energy label) for comparative property analysis
  • Collect photos arrays from listing detail responses for visual property databases
  • Power a location autocomplete input using get_search_suggestions with hits counts per suggestion
  • Build a price-per-region dataset by paginating through search_properties_for_sale across multiple locations
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 huislijn.nl offer an official developer API?+
Huislijn.nl does not publish a documented public developer API. This Parse API provides structured access to the listing data available on the site.
What does `get_property_detail` return beyond the search listing data?+
get_property_detail returns fields not present in search results: a full description text, a characteristics object with specification key-value pairs (e.g. living area, energy label, construction year), a photos array of image URLs, and an agent object with the listing agent's name and phone number.
Can I filter listings by price range, number of rooms, or property type?+
The current search endpoints filter only by location and page. Filtering by price, room count, or property type is not supported. You can fork this API on Parse and revise it to add those filter parameters.
Does the API cover new-build (nieuwbouw) projects separately from existing homes?+
Not currently. The search endpoints return general for-sale and for-rent listings without a distinct new-build category. You can fork this API on Parse and revise it to add a dedicated new-build endpoint.
How does pagination work across the search endpoints?+
Each search response includes a total_pages integer alongside the current page's count and listings. Pass the page parameter incrementally from 1 up to total_pages to retrieve the full result set for a given location query.
Page content last updated . Spec covers 4 endpoints from jaap.nl.
Related APIs in Real EstateSee all →
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.
Pararius.nl API
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.
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.
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.
privateproperty.co.za API
Search and browse property listings for sale and rent across South Africa by location, price, features, and size, then view detailed information about specific properties. Get location suggestions to help narrow down your search area.
zoopla.co.uk API
Search for properties available for sale or rent, view detailed listing information, check sold house prices, and find local estate agents all in one place. Get access to live marketplace data to help you research properties, compare prices, and connect with agents on the Zoopla platform.
housing.com API
Search and retrieve real estate listings on Housing.com. Browse properties for sale, rent, plots, and commercial spaces across major Indian cities with filtering by locality and property type.