# Retrieve development images Fetch a paginated list of images associated with a specific development using its unique ID. This endpoint allows you to retrieve images that are linked to the development, which can include photos of the property, architectural designs, or other relevant visuals. The response includes image details such as file name, size, and type. If the specified development ID does not exist, a error will be returned. In case of system errors during retrieval, a will be triggered. Endpoint: GET /api/v3/developments/{id}/images Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) ## Query parameters: - `pageable` (object, required) ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) Unique identifier of the attachment - `content.name` (string, required) Name of the attachment - `content.description` (string) Description of the attachment - `content.fileSize` (integer) File size in bytes - `content.fileType` (string) File type of the attachment, e.g., image/jpeg - `content.viewUrl` (string) - `content.development` (object) Summary of the development the building belongs to - `content.development.id` (integer) Unique identifier of the Development Example: 1 - `content.development.name` (string) Name of the Development Example: "The Residences" - `content.isPrimary` (boolean) - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)