Gallery

Gallery of images grouped by project

Returns image results organized by project with pagination support. Includes project statistics and filtered/sorted image results.

GET
/gallery/by-project
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

Query Parameters

GalleryByProjectQueryGalleryByProjectQuery

Response Body

Examples

curl -X GET "https://loading/gallery/by-project?max_images_per_project=50&order=asc&page=1&per_page=20&sort_by=original_filename"
{
  "pagination": {
    "has_next": true,
    "has_prev": true,
    "page": 0,
    "pages": 0,
    "per_page": 0,
    "total": 0
  },
  "projects": [
    {
      "completed_images": 0,
      "created_at": "string",
      "failed_images": 0,
      "images": [
        {
          "created_at": "string",
          "error_message": "string",
          "feedback": "like",
          "feedback_comment": "string",
          "group_index": 0,
          "image_index": 0,
          "input_description": {},
          "inputs": [
            {
              "full_size": null,
              "thumbnail": null
            }
          ],
          "original_filename": "string",
          "output": {
            "full_size": null,
            "thumbnail": null
          },
          "processing_time": 0,
          "quality_score": 0,
          "status": "string",
          "version": 0
        }
      ],
      "project_id": 0,
      "project_key": "string",
      "project_name": "string",
      "total_images": 0
    }
  ]
}
Empty