---
title: "Get All Images"
method: GET
path: "/images/"
tags: ["Images"]
---

# Get All Images

`GET /images/`

Get all images from the database.

## Query parameters

- `tagged` boolean, nullable — Filter images by tagged status

## Response `200`

Successful Response

- GetAllImagesResponse
  - `success` boolean, required
  - `message` string, required
  - `data` ImageData[], required
    - `id` string, required
    - `path` string, required
    - `folder_id` string, required
    - `thumbnailPath` string, required
    - `metadata` MetadataModel, required
      - `name` string, required
      - `date_created` string, nullable, required
      - `width` integer, required
      - `height` integer, required
      - `file_location` string, required
      - `file_size` integer, required
      - `item_type` string, required
      - `latitude` number, nullable
      - `longitude` number, nullable
      - `location` string, nullable
    - `isTagged` boolean, required
    - `isFavourite` boolean, required
    - `tags` string[], nullable

## Other responses

- `422` — Validation Error
- `500` — Internal Server Error

## Changes

- **2025-11-15** `a3f421933ece` — 1 info
  - added the required property `data/items/isFavourite` to the response with the `200` status
- **2025-10-29** `6cd40292d781` — 2 info
  - added the new optional `query` request parameter `tagged`
  - added the non-success response with the status `422`
- **2025-10-03** `b105a438e6dd` — 10 info
  - added the optional property `data/items/metadata/latitude` to the response with the `200` status
  - added the optional property `data/items/metadata/location` to the response with the `200` status
  - added the optional property `data/items/metadata/longitude` to the response with the `200` status
  - added the required property `data/items/metadata/date_created` to the response with the `200` status
  - …6 more
- **2025-10-02** `ae3cc3287abc` — 1 breaking
  - the `data/items/metadata` response's property type changed from `string` to `object` for status `200`
- **2025-08-26** `2e78324b9970` — 1 info
  - endpoint added

[Full history](https://skmtc.dev/aossie-org/apis/pictopy/changes/images/get.md)

---

[API](https://skmtc.dev/aossie-org/apis/pictopy.md) · [All operations](https://skmtc.dev/aossie-org/apis/pictopy/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/aossie-org/pictopy/revisions/a6c11e6b42e4/schema)
