## List Indexes

`IndexListPage beta().indexes().list(IndexListParamsparams = IndexListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())`

**get** `/api/v1/indexes`

List indexes for the current project.

### Parameters

- `IndexListParams params`

  - `Optional<String> organizationId`

  - `Optional<Long> pageSize`

  - `Optional<String> pageToken`

  - `Optional<String> projectId`

  - `Optional<String> sourceDirectoryId`

### Returns

- `class IndexListResponse:`

  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<LocalDateTime> createdAt`

    Creation datetime

  - `Optional<String> description`

    Index description.

  - `Optional<LocalDateTime> lastExportedAt`

    Last export time.

  - `Optional<LocalDateTime> lastSyncedAt`

    Last sync time.

  - `Optional<Metadata> metadata`

    Build state and diagnostic info.

  - `Optional<LocalDateTime> 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.IndexListPage;
import com.llamacloud_prod.api.models.beta.indexes.IndexListParams;

public final class Main {
    private Main() {}

    public static void main(String[] args) {
        LlamaCloudClient client = LlamaCloudOkHttpClient.fromEnv();

        IndexListPage page = client.beta().indexes().list();
    }
}
```

#### Response

```json
{
  "items": [
    {
      "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"
    }
  ],
  "next_page_token": "next_page_token",
  "total_size": 0
}
```
