> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cyborg.co/llms.txt
> Use this file to discover all available pages before exploring further.

# list_ids

Returns a list of all document IDs stored in the vector store.

<Tabs>
  <Tab title="Embedded">
    ```python theme={null}
    list_ids() -> List[str]
    ```

    ### Returns

    `List[str]`: List of all document IDs in the store

    ### Example Usage

    ```python theme={null}
    ids = store.list_ids()
    print(f"Store contains {len(ids)} documents")
    print(f"First 5 IDs: {ids[:5]}")
    ```
  </Tab>

  <Tab title="Python SDK">
    ```python theme={null}
    list_ids() -> List[str]
    ```

    ### Returns

    `List[str]`: List of all document IDs in the store

    ### Example Usage

    ```python theme={null}
    ids = store.list_ids()
    print(f"Store contains {len(ids)} documents")
    ```
  </Tab>

  <Tab title="JS/TS">
    ```typescript theme={null}
    listIds(): Promise<string[]>
    ```

    ### Returns

    `Promise<string[]>`: Array of all document IDs in the store

    ### Example Usage

    ```typescript theme={null}
    const ids = await store.listIds();
    console.log(`Store contains ${ids.length} documents`);
    ```
  </Tab>
</Tabs>
