Discover/Halooglasi API
live

Halooglasi APIhalooglasi.com

Search and retrieve property listings from halooglasi.com. Filter by price, rooms, area, and location. Full listing details including amenities, coordinates, and images.

Endpoint health
verified 2d ago
search_listings
get_listing_detail
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Halooglasi API?

The Halooglasi.com API exposes 2 endpoints for accessing property listings from Serbia's largest real estate classifieds platform. search_listings returns paginated listing cards with price, area, rooms, floor, location, and images, while get_listing_detail delivers complete property records including geo coordinates, heating type, amenities, full image arrays, and advertiser information.

Try it
Page number (1-based)
Room count filter, comma-separated (e.g., '2,3,4')
Sort order.
Property category slug.
Location slug for URL taxonomy (e.g., 'beograd', 'novi-sad')
Maximum area in m²
Minimum area in m²
Results per page (max 50)
Maximum price in EUR
Minimum price in EUR
Numeric location ID for filtering (e.g., '35112' for Beograd). Get from get_listing_detail city_id/municipality_id fields.
api.parse.bot/scraper/3bbacfa0-c2f5-4d19-a3d1-77950ce0d67e/<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/3bbacfa0-c2f5-4d19-a3d1-77950ce0d67e/search_listings?page=1&rooms=2%2C3&sort_by=date&category=prodaja-stanova&location=beograd&per_page=5' \
  -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 halooglasi-com-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: HaloOglasi SDK — search Serbian property listings, drill into details."""
from parse_apis.halo_oglasi_property_listings_api import HaloOglasi, Category, Sort, ListingNotFound

client = HaloOglasi()

# Search apartments for sale in Belgrade, sorted by price ascending
for listing in client.listingsummaries.search(
    category=Category.PRODAJA_STANOVA,
    location="beograd",
    sort_by=Sort.PRICE_ASC,
    min_price="50000",
    max_price="150000",
    rooms="2,3",
    limit=5,
):
    print(listing.title, listing.price_eur, listing.area_m2, listing.neighborhood)

# Drill into the first result for full property details
summary = client.listingsummaries.search(
    category=Category.PRODAJA_STANOVA,
    location="beograd",
    limit=1,
).first()

if summary:
    detail = summary.details()
    print(detail.title, detail.price_eur, detail.area_m2)
    print(detail.heating, detail.floor_info, detail.property_type)
    print(detail.amenities)
    print(detail.latitude, detail.longitude)

# Handle a removed listing gracefully
try:
    bad = client.listingsummaries.search(category=Category.PRODAJA_KUCA, limit=1).first()
    if bad:
        bad.details()
except ListingNotFound as exc:
    print(f"Listing gone: {exc.listing_url}")

print("exercised: listingsummaries.search / details / ListingNotFound error handling")
All endpoints · 2 totalmissing one? ·

Search property listings with filters and pagination. Returns listing cards with key metadata (price, area, rooms, floor, location, description, images). Paginates via integer page counter. Default sort is newest-first; price sorting available ascending/descending.

Input
ParamTypeDescription
pageintegerPage number (1-based)
roomsstringRoom count filter, comma-separated (e.g., '2,3,4')
sort_bystringSort order.
categorystringProperty category slug.
locationstringLocation slug for URL taxonomy (e.g., 'beograd', 'novi-sad')
max_areastringMaximum area in m²
min_areastringMinimum area in m²
per_pageintegerResults per page (max 50)
max_pricestringMaximum price in EUR
min_pricestringMinimum price in EUR
location_idstringNumeric location ID for filtering (e.g., '35112' for Beograd). Get from get_listing_detail city_id/municipality_id fields.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "count": "integer, number of listings returned on this page",
    "listings": "array of listing summary objects",
    "per_page": "integer, results per page",
    "total_count": "integer, total number of matching listings",
    "total_pages": "integer, total number of pages"
  }
}

About the Halooglasi API

Search Listings

The search_listings endpoint accepts filters for location (e.g., 'beograd', 'novi-sad'), rooms (comma-separated values like '2,3,4'), min_area and max_area in square meters, category as a property type slug, and sort_by for ordering by newest or price. Results are paginated using a 1-based page integer with up to 50 results per page via per_page. Each response includes total_count, total_pages, and a listings array of summary objects with key fields: price, area, room count, floor, location, short description, and image URLs.

Listing Detail

The get_listing_detail endpoint takes a listing_url directly from the url field returned in search_listings results. The full response adds fields not present in search cards: street, city_id, area_m2 as a number, images as a complete array of full-resolution URLs, geo coordinates for mapping, heating type, amenities list, and a full text description. The city_id field is useful for constructing location-scoped follow-up queries.

Coverage and Pagination

The API covers listings across Serbian cities indexed under halooglasi.com's real estate taxonomy, spanning apartments, houses, and other property categories. Pagination is integer-based and consistent — total_pages and total_count in the search response let you walk all results programmatically. Default sort is newest-first; price-ascending and price-descending are available via sort_by.

Reliability & maintenanceVerified

The Halooglasi API is a managed, monitored endpoint for halooglasi.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when halooglasi.com 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 halooglasi.com 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
2d 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
  • Monitor Belgrade apartment prices over time using search_listings with location='beograd' and price fields
  • Build a property alert system that polls search_listings newest-first and triggers on new listing IDs
  • Aggregate room-count distributions across Novi Sad listings using the rooms filter and total_count
  • Map property listings geographically using get_listing_detail geo coordinates and street fields
  • Compare price-per-m² across neighborhoods by combining area_m2 and price from detail responses
  • Compile a full image dataset for a listing by extracting the images array from get_listing_detail
  • Filter studio and one-room apartments in a price range for a rental market analysis dashboard
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 halooglasi.com have an official developer API?+
Halooglasi.com does not publish an official public developer API or documented data access program.
What does `get_listing_detail` return beyond what appears in search results?+
get_listing_detail adds several fields absent from search_listings summary cards: geo coordinates, a full images array with complete URLs, street name, city_id, heating type, amenities, and a full property description. The listing_url input should come directly from the url field in search_listings results.
Does the API cover rental listings or only property sales?+
The category parameter in search_listings accepts property category slugs, which can target rentals or sales depending on the slug supplied. Both listing types are accessible. If you need to enumerate all available category slugs, you can fork the API on Parse and revise it to add a categories discovery endpoint.
Can I filter listings by exact municipality or micro-location below the city level?+
The location parameter accepts city-level slugs such as 'beograd' or 'novi-sad'. Sub-city filtering at the municipality or neighborhood level is not currently exposed as a distinct parameter. You can fork the API on Parse and revise it to add finer-grained location filtering if halooglasi.com's URL taxonomy supports it.
Are contact details or seller phone numbers returned by the API?+
Advertiser info is included in get_listing_detail responses, but direct phone numbers gated behind a reveal action on the source site are not currently returned. The API covers the publicly visible advertiser metadata. You can fork it on Parse and revise the endpoint to surface additional contact fields if they become accessible.
Page content last updated . Spec covers 2 endpoints from halooglasi.com.
Related APIs in Real EstateSee all →
olx.ba API
Search and browse listings on OLX.ba across all categories. Retrieve listing names, prices, categories, and URLs, or drill into individual listings for detailed attributes such as location, address, area, floor, condition, and seller information. Includes dedicated support for apartment listings.
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.
njuskalo.hr API
Search and retrieve structured listings for cars, real estate, and electronics from Njuskalo.hr in real-time. Access detailed product information across these categories to find exactly what you're looking for.
zonaprop.com.ar API
Search and retrieve property listings from Zonaprop, Argentina's leading real estate portal. Filter by operation type, property category, and location, then fetch full details for any listing.
imot.bg API
Search real estate listings for sale or rent on Bulgaria's imot.bg marketplace, view detailed property information, and compare average prices to make informed decisions. Access search filters and options to refine your property search by location, price, and other criteria.
otodom.pl API
Search and browse real estate listings from Otodom.pl by property type, location, price, and area, then retrieve full listing details including descriptions and seller contact information. Filter results across different markets to find properties that match your specific criteria.
idealista.com API
Access data from idealista.com.
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.