REST: Retrieve vector store file content
Статья создана
Обновлена 30 декабря 2025 г.
Retrieve the parsed contents of a vector store file.
HTTP request
GET https://ai.api.cloud.yandex.net/v1/vector_stores/{vector_store_id}/files/{file_id}/content
Path parameters
|
Field |
Description |
|
vector_store_id |
string Required field. The ID of the vector store. |
|
file_id |
string Required field. The ID of the file within the vector store. |
Response
HTTP Code: 200
OK
Response schema: application/json
{
"object": "string",
"data": [
{
"type": "string",
"text": "string"
}
],
"has_more": "boolean",
"next_page": "unknown"
}
Represents the parsed content of a vector store file.
|
Field |
Description |
|
object |
enum Required field. The object type, which is always
|
|
data[] |
Required field. |
|
has_more |
boolean Required field. Indicates if there are more content pages to fetch. |
|
next_page |
Any of string | null |
DataItem
|
Field |
Description |
|
type |
string The content type (currently only |
|
text |
string The text content |