Discover/atHome API
live

atHome APIathome.lu

Access Luxembourg property listings, agency profiles, and agent details from atHome.lu via 8 structured endpoints. Filter by price, area, rooms, city, and more.

Endpoint health
verified 1d ago
get_agent_details
get_property_details
get_all_agents
search_agencies
search_properties
8/8 passing latest checkself-healing
Endpoints
8
Updated
22d ago

What is the atHome API?

The atHome.lu API covers 8 endpoints that expose property listings, agency profiles, and agent data from Luxembourg's atHome.lu real estate platform. Use search_properties to query listings by price, area, and room count, or get_agency_agents to retrieve the full roster of agents for any agency. Responses include structured fields for addresses, photos, transaction types, pricing, and contact details.

Try it
Page number for pagination.
Maximum surface area in square meters.
Minimum surface area in square meters.
Maximum price in EUR.
Maximum number of rooms.
Minimum price in EUR.
Minimum number of rooms.
Number of results per page.
Transaction type.
Comma-separated property type keys to filter by. Values are case-sensitive: 'Apartment', 'House', 'Semi-detached house', 'Terraced', 'Apartment block', 'New project', 'Housing project'.
api.parse.bot/scraper/c5977a9f-4e77-4f30-9a5b-83c1c0b9671b/<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/c5977a9f-4e77-4f30-9a5b-83c1c0b9671b/search_properties?page=1&max_area=200&min_area=50&max_price=2000000&max_rooms=5&min_price=100000&min_rooms=2&page_size=5&transaction=buy&property_types=Apartment' \
  -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 athome-lu-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.

"""atHome.lu Real Estate API — bounded, re-runnable walkthrough."""
from parse_apis.athome_lu_real_estate_api import (
    AtHome, Transaction, PropertyNotFound
)

client = AtHome()

# Search properties for sale with price/size filters.
for prop in client.properties.search(
    transaction=Transaction.BUY, min_price=500000, max_price=1000000, limit=3
):
    print(prop.type, prop.address.city, prop.prices.min, prop.prices.unit)

# Browse agencies in Luxembourg, drill into the first one.
agency_summary = client.agencysummaries.search(limit=1).first()
if agency_summary:
    print(agency_summary.name, agency_summary.facets.buy, "listings for sale")
    # Navigate to full agency details.
    agency = agency_summary.details()
    print(agency.name, agency.services, agency.languages)

    # List agents belonging to this agency.
    for agent in agency.agents.list(limit=3):
        print(agent.first_name, agent.last_name, agent.email)

# Featured agents list — quick browse of top agents on the platform.
featured = client.featuredagents.list(limit=2).first()
if featured:
    # Drill into full agent profile.
    full_agent = featured.details()
    print(full_agent.first_name, full_agent.last_name, full_agent.languages)

# Typed error handling: fetch a property that may not exist.
try:
    detail = client.properties.search(transaction=Transaction.RENT, limit=1).first()
    if detail:
        print(detail.type, detail.address.city)
except PropertyNotFound as exc:
    print(f"Property not found: {exc.listing_id}")

print("exercised: properties.search / agencysummaries.search / agency.details / agency.agents.list / featuredagents.list / featured.details")
All endpoints · 8 totalmissing one? ·

Search for property listings on atHome.lu with various filters. Returns paginated results ordered by recency. Supports filtering by transaction type, property type, price range, room count, and surface area. Results include full listing summaries with address, contact, media, pricing, and child units for multi-unit projects.

Input
ParamTypeDescription
pageintegerPage number for pagination.
max_areaintegerMaximum surface area in square meters.
min_areaintegerMinimum surface area in square meters.
max_priceintegerMaximum price in EUR.
max_roomsintegerMaximum number of rooms.
min_priceintegerMinimum price in EUR.
min_roomsintegerMinimum number of rooms.
page_sizeintegerNumber of results per page.
transactionstringTransaction type.
property_typesstringComma-separated property type keys to filter by. Values are case-sensitive: 'Apartment', 'House', 'Semi-detached house', 'Terraced', 'Apartment block', 'New project', 'Housing project'.
Response
{
  "type": "object",
  "fields": {
    "data": "array of property listing objects with id, type, address, contact, media, prices, surfaces, rooms, and permalink fields",
    "total": "integer total count of matching results"
  },
  "sample": {
    "data": {
      "data": [
        {
          "id": 9136394,
          "name": "KIISCHTEN",
          "type": "Apartment block",
          "rooms": {
            "max": 0,
            "min": 0
          },
          "prices": {
            "max": 1245000,
            "min": 645000,
            "unit": "€"
          },
          "address": {
            "city": "Junglinster",
            "country": "Luxembourg"
          },
          "typeKey": "residence",
          "bedrooms": {
            "max": 3,
            "min": 1
          },
          "surfaces": {
            "max": 140,
            "min": 63,
            "unit": "m²"
          }
        }
      ],
      "total": 0
    },
    "status": "success"
  }
}

About the atHome API

Property Search and Listing Details

The search_properties endpoint accepts filters including min_price, max_price, min_area, max_area, min_rooms, max_rooms, and page/page_size for pagination. Results return an array of listing objects with id, type, address, contact, media, prices, surfaces, rooms, and permalink fields, plus a total count of matching records. Results are ordered by recency. Note that unrecognized property_types values silently return empty results rather than an error.

get_property_details takes a numeric listing_id (from search_properties results) and returns the full listing record, including descriptions, media, prices, characteristics, and a children array for multi-unit projects. Passing a non-existent ID returns an input_not_found response rather than an HTTP error.

Agency and Agent Data

search_agencies lets you find agencies by optional city parameter (e.g. 'Luxembourg' or 'Esch-sur-Alzette'); omitting it returns all active agencies in Luxembourg. Each result includes id, name, addresses, and facets showing buy, rent, and sold counts. From there, get_agency_details returns the full agency profile: businessHours, description, services, languages, email, and external links.

get_agency_properties ties listings back to an agency via agency_id, with optional filters for agent_id and transaction type ('buy' or 'rent'). get_agency_agents returns every agent at a given agency with fields id, firstName, lastName, email, phoneNumber, and photo. get_agent_details adds languages, experienceSince, and agencyId for individual agents. get_all_agents returns a curated list of active agents platform-wide, each including a nested agency object with id, name, city, and logo.

Reliability & maintenanceVerified

The atHome API is a managed, monitored endpoint for athome.lu — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when athome.lu 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 athome.lu 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
1d ago
Latest check
8/8 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 Luxembourg property search tool filtering by price range and minimum area using search_properties.
  • Aggregate agency contact details and business hours across Luxembourg cities with search_agencies and get_agency_details.
  • Map all listings belonging to a specific agency by combining search_agencies and get_agency_properties.
  • Display agent bio pages with experience dates and languages sourced from get_agent_details.
  • Compare buy-vs-rent inventory counts per agency using the facets field from search_agencies.
  • Build a multi-unit project explorer using the children array returned by get_property_details.
  • Monitor new Luxembourg listings by polling search_properties with recency ordering and tracking new id values.
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 atHome.lu offer an official developer API?+
atHome.lu does not publish a documented public developer API for third-party use. This Parse API provides structured access to the same listing and agency data available on the site.
What does `get_agency_properties` return, and can I filter by transaction type?+
It returns a paginated array of property objects with id, transaction, price, address, characteristic, and photos for the specified agency. You can pass transaction: 'buy' or transaction: 'rent' to narrow results, and optionally supply an agent_id to filter to a single agent's listings. The meta object includes the total count of matching properties.
Are property listings outside Luxembourg covered?+
No. atHome.lu is a Luxembourg-focused platform, so all listings, agencies, and agents returned by these endpoints are based in Luxembourg. The search_agencies endpoint defaults to Luxembourg-wide results when no city filter is supplied.
Does the API expose historical sold-price data or valuation estimates?+
Not currently. The API covers active listing prices, agency facets (which include a sold count per agency), and current property characteristics. You can fork it on Parse and revise it to add an endpoint targeting historical transaction records if the source exposes them.
What happens if I pass an invalid listing ID to `get_property_details`?+
The endpoint returns an input_not_found response rather than an HTTP error code. Similarly, passing an unrecognized value for property_types in search_properties returns empty results without an error, so validating IDs and type values against known data before querying is advisable.
Page content last updated . Spec covers 8 endpoints from athome.lu.
Related APIs in Real EstateSee all →
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
spotahome.com API
Search rental properties on Spotahome and retrieve detailed listing information including pricing, availability, amenities, pet policy, and landlord profiles. Filter by city, budget, dates, and more to explore mid- to long-term rental options across Spotahome's global inventory.
immowelt.de API
Search and browse real estate listings across Germany on Immowelt.de, with access to property details, images, and features for both rentals and sales. Filter results by location and sorting preferences to find properties that match your needs.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
ingatlan.com API
Search real estate listings and development projects on ingatlan.com to find properties with detailed information like prices, descriptions, and project details. Get comprehensive data on available homes and construction projects even when direct access is restricted.
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.
immoscout24.ch API
Search residential and commercial property listings on ImmoScout24 by location, price, and room count, then access detailed information including images, company details, and property types. Find your ideal property with comprehensive filtering options and complete listing data all in one place.
vivareal.com.br API
Search for properties across Brazil's real estate marketplace and access detailed listings with photos, amenities, contact information, and agency portfolios. Discover homes by location, browse available property types, and connect directly with real estate advertisers.
atHome API – Luxembourg Real Estate Data · Parse