Agency Service agency collection Agency Сollection

GET /realandmate/v1/AgencyService/agencies

Returns the collection of real estate agency profiles from Real&Mate.


To use this API method, send the GET request. Below is an example of how to call the API:

GET https://example.com/realandmate/v1/AgencyService/agencies

The response will include a JSON string containing the collection of real estate agency profiles. This string can be converted into a JavaScript object for easier use. Below is the format of the object after parsing the string:

{ "id": string, "name": string, "description": string, "items": { "url": string }, "items_count": number }

{ "id": "3", "name": "Real&Mate Agency Collection", "description": "Collection of agencies registered in Real&Mate web application.", "items": { "url": "https://example.com/realandmate/v1/AgencyService/agencies/77", ... }, "items_count": 777 }

Code Description