# Get Image by ID Retrieve full image information including caption (which naturally continues the dataset's caption_prefix), caption source (automatic/manual/unknown), image name, URL and thumbnail URL, dataset ID, and timestamps. Endpoint: GET /tailored-gen/datasets/{dataset_id}/images/{image_id} ## Path parameters: - `dataset_id` (string, required) Dataset ID - `image_id` (integer, required) Image ID ## Header parameters: - `api_token` (string, required) ## Response 200 fields (application/json): - `id` (integer) Unique identifier for the image - `dataset_id` (integer) ID of the dataset this image belongs to - `caption` (string) Caption describing the image - `caption_source` (string) Source of the caption. 'unknown' value only appears for images that were uploaded using an old version of Tailored Generation. Enum: "automatic", "manual", "unknown" - `image_name` (string) Name of the image - `image_url` (string) URL of the original image file - `thumbnail_url` (string) URL of the image thumbnail - `created_at` (string) Timestamp when the image was created - `updated_at` (string) Timestamp when the image was last updated