Discover/Encuentra24 API
live

Encuentra24 APIencuentra24.com

Search Panama real estate listings, retrieve property details, and browse regional filters via the Encuentra24 API. Covers price, specs, photos, and seller contact.

Endpoint health
verified 4d ago
get_regions
search_listings
get_listing_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Encuentra24 API?

The Encuentra24 API exposes 3 endpoints for accessing public real estate listings from encuentra24.com, Panama's major property marketplace. Use search_listings to query listings by region and property type with pagination, get_listing_details to pull full property data including coordinates, photo URLs, bedrooms, area in square meters, and seller contact, and get_regions to resolve valid location slugs at any hierarchy level from provinces down to neighborhoods.

Try it
Results page number (1-based).
Max listings to return from the page.
Region slug to filter by location. Obtain valid slugs from get_regions endpoint.
Country/language prefix in URL.
Search category slug (property type). Common values: bienes-raices-venta-de-propiedades-apartamentos (apartments for sale), bienes-raices-venta-de-propiedades-casas (houses for sale), bienes-raices-alquiler-apartamentos (apartments for rent).
api.parse.bot/scraper/ff07139a-22b4-45a9-b71b-ceddbce57f15/<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/ff07139a-22b4-45a9-b71b-ceddbce57f15/search_listings?page=1&limit=5&region_slug=prov-panama&country_lang=panama-es&category_slug=bienes-raices-venta-de-propiedades-apartamentos' \
  -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 encuentra24-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: Encuentra24 Panama real estate — discover regions, search listings, fetch details."""
from parse_apis.encuentra24_real_estate_api import (
    Encuentra24, CategorySlug, Level, ListingNotFound
)

client = Encuentra24()

# Discover available regions (provinces) for Panama.
for region in client.regions.list(level=Level._2, limit=5):
    print(region.name, region.slug)

# Search apartments for sale in Panama province (constructible region by slug).
panama = client.region("prov-panama")
for listing in panama.search(category_slug=CategorySlug.BIENES_RAICES_VENTA_DE_PROPIEDADES_APARTAMENTOS, limit=3):
    print(listing.title, listing.price.raw, listing.location)

# Drill into the first result for full details (photos, description, contact).
summary = panama.search(limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.price.currency, detail.bedrooms, detail.size_m2)
    print(detail.media.og_image)

# Handle a listing that no longer exists.
try:
    gone = client.region("prov-panama").search(limit=1).first()
    if gone:
        gone.details()
except ListingNotFound as exc:
    print(f"Listing removed: {exc.listing_url}")

print("exercised: regions.list / region / search / details / ListingNotFound")
All endpoints · 3 totalmissing one? ·

Search real estate listings by category (property type) and region. Returns paginated results (20 per page from the site). Use get_regions to discover valid region_slug values. Each listing summary includes ad_id, title, price, location, and basic specs (bedrooms/bathrooms/area). Paginate via the page parameter; total_results and pagination metadata indicate how many pages are available.

Input
ParamTypeDescription
pageintegerResults page number (1-based).
limitintegerMax listings to return from the page.
region_slugrequiredstringRegion slug to filter by location. Obtain valid slugs from get_regions endpoint.
country_langstringCountry/language prefix in URL.
category_slugstringSearch category slug (property type). Common values: bienes-raices-venta-de-propiedades-apartamentos (apartments for sale), bienes-raices-venta-de-propiedades-casas (houses for sale), bienes-raices-alquiler-apartamentos (apartments for rent).
Response
{
  "type": "object",
  "fields": {
    "query": "object containing the search parameters used (country_lang, category_slug, region_slug, page, limit)",
    "listings": "array of listing summary objects with ad_id, title, price, location, seller_name, details, image_url, url, is_featured",
    "pagination": "object with page, per_page, total_pages, next_page, prev_page",
    "total_results": "integer total number of matching listings"
  }
}

About the Encuentra24 API

Search and Filter Listings

The search_listings endpoint accepts a required region_slug and an optional category_slug to filter by property type — for example, bienes-raices-venta-de-propiedades-apartamentos for apartment sales. Results come back paginated at 20 per page; the pagination object in the response includes total_pages, next_page, and prev_page so you can walk through large result sets. Each listing summary in the listings array carries ad_id, title, price, location, seller_name, core specs like bedrooms and bathrooms, a thumbnail image_url, the full listing url, and an is_featured flag.

Property Detail Data

get_listing_details takes a full listing URL — typically sourced from search_listings results — and returns the complete record. The media object contains an og_image, photos arrays in large, medium, and all-sizes variants, and a coordinates field when the seller has provided a map pin. The price object breaks down into amount (integer or null), currency, and raw (the displayed string). Additional structured attributes appear in the details key-value object alongside dedicated fields for size_m2, bedrooms, and location.

Region Hierarchy

get_regions exposes Encuentra24's location tree at configurable depth. Pass level=2 for provinces, level=3 for cities and districts, level=4 for neighborhoods, and level=5 for sub-neighborhoods. Each region object in the response includes name, display, and slug. Feed those slugs directly into region_slug on search_listings to scope results geographically. The optional country_lang parameter controls the locale prefix used across all three endpoints.

Reliability & maintenanceVerified

The Encuentra24 API is a managed, monitored endpoint for encuentra24.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when encuentra24.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 encuentra24.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
4d ago
Latest check
3/3 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 Panama apartment and house listings into a property search app using search_listings with category and region filters
  • Track asking prices over time for a specific district by polling search_listings with a neighborhood-level region_slug
  • Enrich CRM records with full property details — coordinates, photos, area — by calling get_listing_details on saved listing URLs
  • Build a map overlay of available properties using the coordinates field returned by get_listing_details
  • Populate a region dropdown in a real estate tool by fetching provinces and cities from get_regions at levels 2 and 3
  • Monitor which listings carry the is_featured flag in a given region to analyze promoted inventory patterns
  • Extract seller contact information from individual listings to support lead-generation workflows
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 Encuentra24 have an official developer API?+
Encuentra24 does not publish a public developer API or documented REST interface for third-party access to its listing data.
What location granularity does get_regions support?+
get_regions returns regions at five hierarchy levels: level 2 (provinces), level 3 (cities and districts), level 4 (neighborhoods), and level 5 (sub-neighborhoods). The slug values returned at any level can be passed directly as region_slug in search_listings.
Does search_listings return contact details like phone numbers?+
No. search_listings returns listing summaries including ad_id, title, price, location, seller_name, core specs, and image URLs. Full contact data is only available through get_listing_details, and what is exposed there is the seller name from the contact object. Phone numbers are not currently returned by either endpoint. You can fork this API on Parse and revise it to add a dedicated contact-detail endpoint if the underlying listing page exposes that information.
Is listing data available for countries other than Panama?+
The API is scoped to encuentra24.com listings, which primarily cover Panama. The country_lang parameter allows locale adjustment, but coverage outside Panama is not currently guaranteed. You can fork this API on Parse and revise it to extend region discovery and search to additional Encuentra24 country subdomains if they exist.
How does pagination work in search_listings?+
Results are returned 20 per page, matching the site's default. The pagination object in each response includes page, per_page, total_pages, next_page, and prev_page. Pass the page parameter (1-based) to walk through additional results. The limit parameter lets you receive fewer than 20 items from a given page.
Page content last updated . Spec covers 3 endpoints from encuentra24.com.
Related APIs in Real EstateSee all →
inmuebles24.com API
Search and browse real estate listings from inmuebles24.com, Mexico's leading property portal. Filter by property type, operation type, and location, with pagination support to explore available rentals and sales across regions and property categories.
propiedades.com API
Search and browse real estate listings from Mexico's Propiedades.com, view detailed property information including images and descriptions, and use location autocomplete to find homes in your desired area. Access comprehensive listing data to compare properties and make informed real estate decisions.
portalinmobiliario.com API
Search and analyze property listings from Chile's top real estate platform, accessing detailed information like prices in UF or CLP, room and bathroom counts, square footage, and locations for apartments, houses, and other properties. Quickly compare available properties and gather market data to find your ideal home or investment opportunity.
casasyterrenos.com API
Search and browse real estate listings across Mexico with detailed property information, pricing, and seller contacts from Casas y Terrenos. Find your perfect home or land by accessing comprehensive property details and comparing available options in one place.
inmuebles.mercadolibre.com.ar API
Search and browse apartment listings on Mercado Libre Argentina with detailed information including prices, addresses, and full descriptions. Get access to paginated results to easily explore available properties across different areas.
idealista.com API
Access data from idealista.com.
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.
properati.com.ar API
Search and browse real estate listings in Argentina with detailed property information, including descriptions, prices, and similar properties. Filter listings by property type and operation type (buy, rent, etc.) to find exactly what you're looking for.