Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 646 Bytes

RealEstate.md

File metadata and controls

29 lines (24 loc) · 646 Bytes

Real estates

Configure

$realEstate = (new RealEstate())
  ->setPublishChannel(?string $publishChannel = null)
  ->setIncludeAttachments(bool $includeAttachments = false)
  ->setIncludeArchive(bool $includeArchive = false)
  ->setPageSize(int $pageSize = 100);

Get all (or get by specific page)

API reference: https://api.immobilienscout24.de/api-docs/import-export/introduction/

$realEstate->getAll(?int $page = null);

Get all with details

$realEstate->getAllWithDetails();

We highly recommend caching this result.

Get a real estate by id

$realEstate->getOneById();