Skip to content
GET /agency-search

Search for real estate agencies by location.

Description

The agency-search endpoint lets you discover real estate agencies operating across the UAE. Results include agency profiles with their name, logo, description, agent count, and property listings count.

This endpoint is essential for building agency directories and understanding the competitive landscape in specific areas. Filter by location to find agencies that specialize in particular communities.

Combine with agency-details, agency-agents, and agency-properties to create comprehensive agency profile pages.

Parameters

Name Type Required Description Example
location_id string Required Location external ID to filter agencies by area. Get from the autocomplete endpoint. Example: '1' for whole of Dubai, '3' for Abu Dhabi. 1
page integer Optional Page number for paginated results, starting from 1. Results per page: 40. 1
langs string Optional Comma-separated language codes: 'en', 'ar', 'ru', 'zh'. Default: 'en'. en

Code Examples

curl --request GET \
  --url 'https://bayut14.p.rapidapi.com/agency-search?location_id=1&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": {
    "agencies": [
      {
        "externalID": "5678",
        "name": "Premium Properties LLC",
        "logo": {
          "url": "https://bayut-production.s3.eu-central-1.amazonaws.com/image/agency-logo.jpg"
        },
        "description": "Premium Properties LLC is a leading real estate brokerage in Dubai...",
        "agentsCount": 35,
        "propertiesCount": 890,
        "phone": "+97142345678",
        "location": {
          "name": "Dubai Marina"
        }
      }
    ],
    "total": 45,
    "page": 1,
    "totalPages": 2,
    "hitsPerPage": 40
  }
}

Use Cases

  • Build agency directories for specific areas
  • Analyze agency competition in target markets
  • Create agency comparison and review platforms
  • Match property seekers with established agencies

Related Endpoints

Try this endpoint now

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