Skip to content
GET /developer-search-by-name

Search for property developers by their name.

Description

The developer-search-by-name endpoint lets you find real estate developers by searching their name. This is particularly useful for looking up major UAE developers like Emaar, DAMAC, Nakheel, Aldar, and others.

Results include developer profiles with their name, logo, and project counts. The returned developer external IDs can be used with the search-property endpoint's developer_ids parameter to filter listings by developer.

This endpoint supports partial name matching, making it easy to find developers even with incomplete search terms.

Parameters

Name Type Required Description Example
query string Required The developer name to search for. Supports partial matching. Emaar
page integer Optional Page number for paginated results, starting from 1. Results per page: 80. 1
langs string Optional Language code: 'en', 'ar', 'ru', 'zh'. Default: 'en'. en

Code Examples

curl --request GET \
  --url 'https://bayut14.p.rapidapi.com/developer-search-by-name?query=Emaar&page=1&langs=en' \
  --header 'x-rapidapi-host: bayut14.p.rapidapi.com' \
  --header 'x-rapidapi-key: YOUR_API_KEY'

Example Response

Response
{
  "success": true,
  "data": {
    "developers": [
      {
        "externalID": "9012",
        "name": "Emaar Properties",
        "logo": {
          "url": "https://bayut-production.s3.eu-central-1.amazonaws.com/image/emaar-logo.jpg"
        },
        "projectsCount": 85,
        "propertiesCount": 12500,
        "description": "Emaar Properties is one of the world's largest real estate developers, known for iconic projects like Burj Khalifa and Dubai Mall."
      }
    ],
    "total": 1,
    "page": 1,
    "totalPages": 1,
    "hitsPerPage": 80
  }
}

Use Cases

  • Look up developer IDs for property search filters
  • Build developer profile and directory pages
  • Track developer portfolios and project launches
  • Create developer comparison tools for investors

Related Endpoints

Try this endpoint now

Subscribe to BayutAPI on RapidAPI and start making requests in minutes.