GET /:country/listings/:id/images

Returns the images for a listing.

Response

On success returns HTTP 200 OK with the folowing data:

Key Content / Description
numFound The number of images found.
images An array of Images, can be empty.

On error returns an Error object.

Examples

GET https://api.opendi.com/de/listings/123555/images

HTTP 200 OK

{
    "numFound": 2,
    "images" : [{
        "id":  "15662346676",
        "type": "logo",
        "url": "http://images.opendi.com/123554/15662346676.jpg",
        "base64": null,
        "caption": "Opendi logo."
    },
    {
        "id":  "15662346677",
        "type": "printad",
        "url": "http://images.opendi.com/123555/15662346677.jpg",
        "base64": null,
        "caption": "A newspaper advertisment."
    }]
}