## Get File Page Screenshot `JsonValue pipelines().images().getPageScreenshot(ImageGetPageScreenshotParamsparams, RequestOptionsrequestOptions = RequestOptions.none())` **get** `/api/v1/files/{id}/page_screenshots/{page_index}` Get screenshot of a page from a file. ### Parameters - `ImageGetPageScreenshotParams params` - `String id` - `Optional pageIndex` - `Optional organizationId` - `Optional projectId` ### Returns - `class ImageGetPageScreenshotResponse:` ### Example ```java package com.llamacloud_prod.api.example; import com.llamacloud_prod.api.client.LlamaCloudClient; import com.llamacloud_prod.api.client.okhttp.LlamaCloudOkHttpClient; import com.llamacloud_prod.api.models.pipelines.images.ImageGetPageScreenshotParams; import com.llamacloud_prod.api.models.pipelines.images.ImageGetPageScreenshotResponse; public final class Main { private Main() {} public static void main(String[] args) { LlamaCloudClient client = LlamaCloudOkHttpClient.fromEnv(); ImageGetPageScreenshotParams params = ImageGetPageScreenshotParams.builder() .id("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e") .pageIndex(0L) .build(); ImageGetPageScreenshotResponse response = client.pipelines().images().getPageScreenshot(params); } } ``` #### Response ```json {} ```