Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex AI Studio
  • About Yandex AI Studio
  • Getting started with Model Gallery
  • Yandex Workflows
  • Switching from the AI Assistant API to Responses API
  • Compatibility with OpenAI
    • Overview
    • API authentication
        • Overview
        • listVectorStores
        • createVectorStore
        • getVectorStore
        • modifyVectorStore
        • deleteVectorStore
        • createVectorStoreFileBatch
        • getVectorStoreFileBatch
        • listFilesInVectorStoreBatch
        • listVectorStoreFiles
        • createVectorStoreFile
        • getVectorStoreFile
        • deleteVectorStoreFile
        • updateVectorStoreFileAttributes
        • retrieveVectorStoreFileContent
        • searchVectorStore
  • Quotas and limits
  • Pricing policy
  • Access management
  • Audit Trails events
  • Public materials
  • Release notes
  • Terms and definitions

In this article:

  • HTTP request
  • Path parameters
  • Response
  • DataItem
  1. API references
  2. OpenAI-compatible APIs
  3. Vector stores
  4. retrieveVectorStoreFileContent

REST: Retrieve vector store file content

Written by
Yandex Cloud
Updated at December 30, 2025
  • HTTP request
  • Path parameters
  • Response
  • DataItem

Retrieve the parsed contents of a vector store file.

HTTP requestHTTP request

GET https://ai.api.cloud.yandex.net/v1/vector_stores/{vector_store_id}/files/{file_id}/content

Path parametersPath 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.

ResponseResponse

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 vector_store.file_content.page

  • vector_store.file_content.page

data[]

DataItem

Required field.

has_more

boolean

Required field. Indicates if there are more content pages to fetch.

next_page

Any of string | null

DataItemDataItem

Field

Description

type

string

The content type (currently only "text")

text

string

The text content

Was the article helpful?

Previous
updateVectorStoreFileAttributes
Next
searchVectorStore
© 2026 Direct Cursus Technology L.L.C.