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. also possible as array (e.g. picturesize[]=big&picturesize[]=small)

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 matching projects as JSON without limit and offset limitations. For parameters see project list call.

Example

All project ids with project state building

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