Discover/encuentra24.com API
live

encuentra24.com APIencuentra24.com

Search and retrieve Encuentra24 real estate listings by region and property type. Get price, bedrooms, size, photos, coordinates, and seller contact.

Endpoints
3
Updated
4mo ago
Try it
Results page number.
Max listings to return from the page.
Region slug to filter by location. Use get_regions to discover valid slugs. Examples: prov-panama-ciudad-de-panama, prov-panama-ciudad-de-panama-costa-del-este.
Country/language prefix in URL.
Search category slug (property type).
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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ff07139a-22b4-45a9-b71b-ceddbce57f15/search_listings?page=1&limit=2&region_slug=prov-panama-ciudad-de-panama&country_lang=panama-es&category_slug=bienes-raices-venta-de-propiedades-apartamentos' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search real estate listings for a given category (property type) and region slug. Returns paginated results parsed from the public search results page (20 listings per page).

Input
ParamTypeDescription
pageintegerResults page number.
limitintegerMax listings to return from the page.
region_slugrequiredstringRegion slug to filter by location. Use get_regions to discover valid slugs. Examples: prov-panama-ciudad-de-panama, prov-panama-ciudad-de-panama-costa-del-este.
country_langstringCountry/language prefix in URL.
category_slugstringSearch category slug (property type).
Response
{
  "type": "object",
  "fields": {
    "query": "object containing the search parameters used",
    "listings": "array of listing summary objects with ad_id, title, price, location, 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"
  },
  "sample": {
    "data": {
      "query": {
        "page": 1,
        "limit": 3,
        "region_slug": "prov-panama-ciudad-de-panama",
        "country_lang": "panama-es",
        "category_slug": "bienes-raices-venta-de-propiedades-apartamentos"
      },
      "listings": [
        {
          "url": "https://www.encuentra24.com/panama-es/bienes-raices-proyectos-nuevos/aura-obarrio-59-apartamentos-nuevos-en-obarrio-1-2-y-3-recamaras/32138864",
          "ad_id": "32138864",
          "price": {
            "raw": "Desde $ 183,000",
            "amount": 183000,
            "currency": "USD"
          },
          "title": "Aura Obarrio 59 Apartamentos Nuevos En Obarrio | 1, 2 Y 3 Recámaras",
          "details": {
            "area_m2": 58,
            "bedrooms": 1,
            "bathrooms": 1
          },
          "location": "Obarrio, Ciudad de Panamá",
          "image_url": "https://photos.encuentra24.com/t_or_fh_m/f_auto/v1/pa/32/13/88/64/32138864_fd5e3a79239b11dcb84fbb598bb164ac-169f234",
          "is_featured": false,
          "seller_name": null
        }
      ],
      "pagination": {
        "page": 1,
        "per_page": 20,
        "next_page": 2,
        "prev_page": null,
        "total_pages": 780
      },
      "total_results": 15591
    },
    "status": "success"
  }
}

About the encuentra24.com API

The Encuentra24 API exposes 3 endpoints for accessing public real estate listings across Central America. Use search_listings to query properties by region slug and category, get_listing_details to pull full attributes including price, size in m², bedrooms, bathrooms, coordinates, and photo URLs for a single listing, and get_regions to discover valid location slugs for filtering searches.

Search and Filter Listings

The search_listings endpoint accepts a required region_slug (e.g., prov-panama-ciudad-de-pa) and an optional category_slug for property type. Results are paginated at 20 listings per page. Each listing summary in the response includes ad_id, title, price, location, details, image_url, url, and an is_featured flag. The pagination object returns page, per_page, total_pages, next_page, and prev_page so you can walk through result sets. total_results gives the full count of matching listings.

Listing Detail Data

get_listing_details takes a full listing URL (typically sourced from search_listings results) and returns a structured object with price (broken into amount, currency, and raw), size_m2, bedrooms, location, title, contact (seller name when available), a details key-value map for additional attributes, and a media object containing og_image, photos arrays in large and medium sizes, and coordinates for map placement.

Region Discovery

get_regions takes an optional level integer (2–5) controlling geographic granularity — level 2 returns broad regions like provinces, while higher levels return finer subdivisions. Each returned region object includes name, display, and slug fields. The slug value feeds directly into region_slug in search_listings. An optional country_lang parameter adjusts the country and language context.

Common use cases
  • Build a property search tool filtered by Panamanian province using region_slug and category_slug
  • Aggregate listing prices and size_m2 data to calculate price-per-m² trends by region
  • Extract coordinates from get_listing_details to plot listings on a custom map
  • Monitor new listings in a specific category by polling search_listings and tracking ad_id changes
  • Compile seller contact data from the contact block for lead generation in a target region
  • Pull photo arrays from the media object to build a listing gallery or comparison UI
  • Populate a region picker in a frontend app using slugs returned by get_regions
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 documented public developer API. There is no official API portal or developer program listed on the site as of the time of writing.
What does the get_listing_details endpoint return beyond the search summary?+
get_listing_details returns fields not present in search results: structured price with currency, size_m2, bedrooms, a key-value details map for additional attributes, coordinates inside the media object, and full photo arrays at both large and medium resolutions. The contact object includes the seller name when it is publicly displayed on the listing page.
How does pagination work in search_listings, and can I retrieve more than 20 listings per call?+
Each call returns up to 20 listings per page, matching the source site's page size. The pagination object in the response provides total_pages and next_page so you can iterate through result sets. The limit parameter lets you cap results below 20, but cannot raise the ceiling above one page's worth per request.
Does the API cover rental listings separately from sale listings?+
Property type is controlled via the category_slug parameter in search_listings, which maps to the categories Encuentra24 exposes publicly — including both sale and rental property types where available. Coverage depends on what categories the site indexes for a given region.
Does the API return historical price changes or listing activity over time?+
Not currently. The API returns the current state of a listing: price, attributes, photos, and contact at the time of the request. There is no historical price or activity timeline in the response fields. You can fork this API on Parse and revise it to add a tracking layer that records snapshots over time.
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
idealista.com API
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.