Image meta information¶
Meta information about an image.
This endpoint is templates. Valid values for size are :
Size | Description |
---|---|
small | max 64 x 64 |
medium | max 358 x 358 |
large | max 498 x 498 |
xlarge | max 726 x 726 |
Fields¶
field | type | constraints | default | Req | W | U |
---|---|---|---|---|---|---|
dimensions.width | int | – | no | no | no | |
dimensions.height | int | – | no | no | no |
dimensions.width
The width of the image.
dimensions.height
The height of the image.
Examples¶
Retrieving the meta information of a medium sized image associated with an advertisement.
Request :
GET /v2/images/96743860-6548-4c0b-b154-1b6e9dff8684/medium/meta HTTP/1.1 Host: api.marktplaats.nlResponse :
HTTP/1.1 200 OK Content-Type: application/json { "_links": { "self": { "href": "/v2/images/96743860-6548-4c0b-b154-1b6e9dff8684/medium" }, }, "dimensions": { "width": 640, "height": 480 } }