## Get Index `IndexGetResponse beta().indexes().get(IndexGetParamsparams = IndexGetParams.none(), RequestOptionsrequestOptions = RequestOptions.none())` **get** `/api/v1/indexes/{index_id}` Get an index by ID. ### Parameters - `IndexGetParams params` - `Optional indexId` - `Optional organizationId` - `Optional projectId` ### Returns - `class IndexGetResponse:` A searchable index over a directory of documents. - `String id` Unique identifier - `String exportConfigId` ID of the export configuration. - `String name` Index name. - `String projectId` Project this index belongs to. - `String sourceDirectoryId` ID of the source directory. - `String syncConfigId` ID of the sync configuration. - `Optional createdAt` Creation datetime - `Optional description` Index description. - `Optional lastExportedAt` Last export time. - `Optional lastSyncedAt` Last sync time. - `Optional metadata` Build state and diagnostic info. - `Optional updatedAt` Update datetime ### 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.beta.indexes.IndexGetParams; import com.llamacloud_prod.api.models.beta.indexes.IndexGetResponse; public final class Main { private Main() {} public static void main(String[] args) { LlamaCloudClient client = LlamaCloudOkHttpClient.fromEnv(); IndexGetResponse index = client.beta().indexes().get("index_id"); } } ``` #### Response ```json { "id": "id", "export_config_id": "export_config_id", "name": "name", "project_id": "project_id", "source_directory_id": "source_directory_id", "sync_config_id": "sync_config_id", "created_at": "2019-12-27T18:11:19.117Z", "description": "description", "last_exported_at": "2019-12-27T18:11:19.117Z", "last_synced_at": "2019-12-27T18:11:19.117Z", "metadata": { "foo": "bar" }, "updated_at": "2019-12-27T18:11:19.117Z" } ```