## Retrieve vector store file content

`$ openai vector-stores:files content`

**get** `/vector_stores/{vector_store_id}/files/{file_id}/content`

Retrieve the parsed contents of a vector store file.

### Parameters

- `--vector-store-id: string`

  The ID of the vector store.

- `--file-id: string`

  The ID of the file within the vector store.

### Returns

- `VectorStoreFileContentResponse: object { data, has_more, next_page, object }`

  Represents the parsed content of a vector store file.

  - `data: array of object { text, type }`

    Parsed content of the file.

    - `text: optional string`

      The text content

    - `type: optional string`

      The content type (currently only `"text"`)

  - `has_more: boolean`

    Indicates if there are more content pages to fetch.

  - `next_page: string`

    The token for the next page, if any.

  - `object: "vector_store.file_content.page"`

    The object type, which is always `vector_store.file_content.page`

### Example

```cli
openai vector-stores:files content \
  --api-key 'My API Key' \
  --vector-store-id vs_abc123 \
  --file-id file-abc123
```

#### Response

```json
{
  "data": [
    {
      "text": "text",
      "type": "type"
    }
  ],
  "has_more": true,
  "next_page": "next_page",
  "object": "vector_store.file_content.page"
}
```
