Projects

  1. List and search
  2. Detail
  3. Short List
  4. Ids

Detail /projekt/detail

Returns detailed information of a single project as xml in the same format as project list call.

Parameters

id
The id of the project
culture
Language for i18n fields
Default: de
picturesize
The Picture Size to be used for picture urls. Multiple sizes can be requested using array notation (e.g. picturesize[]=big&picturesize[]=small)
alleProjektObjekte
Show all realties of the project regardless of realty state: ?alleProjektObjekte=1
Default: 0
objektIds
Return only realty ids instead of whole realty data in a project tag: ?objektIds=1
Default: 0

Short List /projekt/projektList

Returns a list of projekt ids and title of all active projects with "Show on Homepage" flag.

Example

https://api.justimmo.at/rest/v1/projekt/projektList
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
    <query-result>
        <count>3</count>
    </query-result>
    <projekt>
        <id>46</id>
        <titel>Demoprojekt in Zentrumsnähe</titel>
    </projekt>
    <projekt>
        <id>51</id>
        <titel>Neubau mitten im dritten</titel>
    </projekt>
    <projekt>
        <id>2065</id>
        <titel></titel>
    </projekt>
</justimmo>

The query-result>count element contains information of total hits of the search regardless of given limit parameter.

Ids /projekt/ids

Returns ids of ALL matching projects as JSON. Filters and orderby/ordertype/alle/alleProjektObjekte from the project list call apply. limit, offset, culture, picturesize, showDetails and objektIds have no effect here - the call is not paginated and returns ids only.

Example

All project ids with project state building

https://api.justimmo.at/rest/v1/projekt/ids?filter[projekt_status]=building
["123","125","159"]