Skip to content

Retrieve real estate agent's logo

Logo/GET

The resource Logo represents the logo of a realtor.

GET /offer/v1.0/realtor/{username}/logo

Supported media types:
XML
JSON

Note: Resource "me" doesn't work with this request.

Request

Path parameters

  • Username - the username which the user uses for logging in to www.immobilienscout24.de

Response

XML:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<common:realtorLogo xmlns:common="http://rest.immobilienscout24.de/schema/common/1.0" xmlns:gis="http://rest.immobilienscout24.de/schema/platform/gis/1.0" xmlns:search="http://rest.immobilienscout24.de/schema/search/common/1.0" xmlns:ns5="http://rest.immobilienscout24.de/schema/search/shortlist/1.0" xmlns:xlink="http://www.w3.org/1999/xlink">     <urls>

        <url scale="SCALE_200x200" href="http://picture.preview-is24.de/pic/orig04/N/105/404/39/105404039-0.png/ORIG/resize/200x200%3E/format/jpg"/>

        <url scale="SCALE_MAX" href="http://picture.preview-is24.de/pic/orig04/N/105/404/39/105404039-0.png"/>

    </urls>     

    <realtorLogoUrl>http://picture.preview-is24.de/pic/orig04/N/105/404/39/105404039-0.png/ORIG/resize/200x200%3E/format/jpg</realtorLogoUrl>

</common:realtorLogo>

JSON:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
{
    "common.realtorLogo":{
    "urls":[
        {
            "url":[
                {
                    "@scale":"SCALE_200x200",
                    "@href":"http:\/\/picture.preview-is24.de\/pic\/orig04\/N\/105\/404\/39\/105404039-0.png\/ORIG\/resize\/200x200%3E\/format\/jpg"
                },
                    { "@scale":"SCALE_MAX",

                    "@href":"http:\/\/picture.preview-is24.de\/pic\/orig04\/N\/105\/404\/39\/105404039-0.png"
                }
            ]
        }
    ]
    ,
    "realtorLogoUrl":"http:\/\/picture.preview-is24.de\/pic\/orig04\/N\/105\/404\/39\/105404039-0.png\/ORIG\/resize\/200x200%3E\/format\/jpg"
  }
}