Discover/SAGA API
live

SAGA APIsaga.hamburg

Access live office, apartment, and parking listings from SAGA Hamburg via one API endpoint. Filter by category, get rent, area, and availability data.

This API takes change requests — .
Endpoint health
verified 3d ago
search_offices
1/1 passing latest checkself-healing
Endpoints
1
Updated
17d ago

What is the SAGA API?

The SAGA Hamburg API provides access to current rental property listings from one of Hamburg's largest housing companies through a single search_offices endpoint. Each response includes up to the full current inventory of offices, apartments, or parking spots, returning structured data across fields such as address, rent, available area, and availability status — all filterable by the category parameter.

This call costs2 credits / call— charged only on success
Try it
Property category to search.
api.parse.bot/scraper/8fe7e14d-e42e-45e8-abd3-c3eb2b016d04/<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/8fe7e14d-e42e-45e8-abd3-c3eb2b016d04/search_offices?category=OFFICE' \
  -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 saga-hamburg-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: SAGA Hamburg property search — bounded, re-runnable; every call capped."""
from parse_apis.saga_hamburg_api import Saga, Category, InvalidCategory

client = Saga()

# Search for commercial/office listings (the default category).
for listing in client.listings.search(category=Category.OFFICE, limit=3):
    print(listing.title, listing.district, listing.total_rent_eur)

# Take one listing to inspect its details.
office = client.listings.search(category=Category.OFFICE, limit=1).first()
if office:
    print(office.address, office.area_m2, office.available_from)
    print(f"Location: {office.latitude}, {office.longitude}")

# Typed error: catch invalid category input.
try:
    client.listings.search(category=Category.PARKING, limit=1).first()
except InvalidCategory as e:
    print(f"bad category: {e.category}")

print("exercised: listings.search")
All endpoints · 1 totalmissing one? ·

Search for available property listings in Hamburg by category. Returns all currently listed properties including offices, apartments, or parking spots with address, rent, area, and availability details. Results are returned in a single page (no pagination).

Input
ParamTypeDescription
categorystringProperty category to search.
Response
{
  "type": "object",
  "fields": {
    "total": "number of listings found",
    "category": "selected category code",
    "listings": "array of property listing objects"
  },
  "sample": {
    "data": {
      "total": 11,
      "category": "OFFICE",
      "listings": [
        {
          "title": "Existenzgründerbüro 3 - 1 Zimmer",
          "address": "Havighorster Redder 39, 22115 Hamburg",
          "area_m2": "24,16",
          "district": "Billstedt",
          "latitude": "53.5277585",
          "longitude": "10.1477334",
          "detail_path": "/immobiliensuche/immo-detail/6184/existenzgrunderburo-3-1-zimmer",
          "available_from": "2026-01-01",
          "total_rent_eur": "483,03"
        }
      ]
    },
    "status": "success"
  }
}

About the SAGA API

What the API Returns

The search_offices endpoint queries SAGA Hamburg's live property inventory and returns a structured response containing a total count of matching listings alongside a listings array of individual property objects. Each listing carries address details, rental price, floor area, and availability information. The category input parameter lets you scope results to a specific property type — commercial office spaces, residential apartments, or parking facilities.

Filtering and Response Shape

Passing a value to the category parameter narrows results to that property type, and the response echoes back the selected category code alongside the matched listings. If category is omitted, the endpoint applies a default category. Results are returned in a single flat array — there is no cursor or page token, so the full result set for a given category arrives in one response.

Data Coverage

All listings reflect SAGA Hamburg's current publicly advertised availability. Fields per listing include rent amount, usable area (square meters), address, and availability date or status. The data covers only properties actively listed by SAGA Hamburg at the time of the request — historical listings, expired offers, and properties from other Hamburg landlords are not included.

Reliability & maintenanceVerified

The SAGA API is a managed, monitored endpoint for saga.hamburg — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when saga.hamburg 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 saga.hamburg 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
1/1 endpoint 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
  • Monitor new office space availability in Hamburg by polling the API and diffing total counts over time
  • Build a rental alert tool that notifies users when apartments matching their area or rent range appear in listings
  • Aggregate current SAGA Hamburg parking spot availability for a Hamburg mobility or logistics app
  • Feed live commercial property data into a Hamburg real estate market dashboard
  • Compare SAGA Hamburg office rents and floor areas across listed properties for tenant research tools
  • Track how quickly listings are added or removed to estimate vacancy turnover rates
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does SAGA Hamburg provide an official developer API?+
SAGA Hamburg does not publish a documented public developer API. Their property listings are available through their website at saga.hamburg, but no official API with keys or documentation is offered to third parties.
What property categories can I retrieve with the search_offices endpoint?+
The category parameter accepts values corresponding to commercial offices, residential apartments, and parking spots. The response includes a category field confirming which category was applied, and total reflects the count of listings found under that category at the time of the request.
Does the API support pagination or filtering by rent range or area?+
The endpoint returns all matching listings for a category in a single response — there is no pagination, cursor, or page size parameter. Filtering beyond category (such as by minimum area, maximum rent, or district) is not currently supported at the API level. You can fork this API on Parse and revise it to add server-side or post-response filtering on those fields.
Are historical or expired SAGA Hamburg listings available?+
The API reflects only properties currently listed by SAGA Hamburg. Past listings, expired offers, and previously available units are not included in the response. You can fork this API on Parse and revise it to build a logging layer that archives snapshots over time.
Does the API cover listings from other Hamburg landlords or housing companies?+
No — the API covers only SAGA Hamburg's own inventory. Properties from other Hamburg landlords, portals like Immobilienscout24, or public housing bodies are not included. You can fork this API on Parse and revise it to add endpoints pointing to other Hamburg property sources.
Page content last updated . Spec covers 1 endpoint from saga.hamburg.
Related APIs in Real EstateSee all →
wg-gesucht.de API
Search and filter housing listings on WG-Gesucht.de to find shared apartments and rooms that match your budget, location, and availability preferences. Retrieve detailed listing information including rent, room size, district, and contact details.
inberlinwohnen.de API
Search and browse affordable apartment listings from Berlin's state-owned housing companies, view detailed property information, and access company profiles and tenant guides. Find your next home in Berlin with comprehensive data on available rentals and housing provider information in one place.
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.
immonet.de API
Search real estate listings across Germany and retrieve detailed property information including pricing, features, and location data from immonet.de. Find properties for sale or rent with comprehensive market data.
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.
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.
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.
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.