Real Estate Service Real Estate object profile collection Real Estate object profile collection

GET /realandmate/v1/RealEstateService/RealEstateObjects

Returns the collection of real estate object 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/RealEstateService/RealEstateObjects

The response will include a JSON string containing the collection of real estate object profiles from Real&Mate. 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": "5", "name": "Real&Mate Real Estate Object Collection", "description": "Collection of real estate objects registered in Real&Mate.", "items":{ "url": "https://example.com/realandmate/v1/RealEstateService/RealEstateObjects/777", ... }, "items_count": 777 }

Code Description