GET
/vector_stores/{vector_store_id}/files/{file_id}/contentRetrieve vector store file content
Retrieves the parsed contents of a file attached to a vector store. Use vector_store_id and file_id to identify the file whose content pages you need. If more pages are available, use the returned next_page value to continue.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
vector_store_idstringrequired
The identifier of the vector store containing the file.
file_idstringrequired
The identifier of the file whose parsed content to retrieve.
200Returns a parsed content page containing an array of content items, a `has_more` indicator, and a `next_page` value when additional pages are available.
objectstringrequired
The object type, which is always `vector_store.file_content.page`
dataarray<object>required
Parsed content of the file.
has_morebooleanrequired
Indicates if there are more content pages to fetch.
next_pagestringrequired
The token for the next page, if any.
429Returned when the request was rejected because a rate limit was exceeded.
errorobjectrequired
Error handling
vector_store_id and file_id must identify the vector store file whose parsed content you want to retrieve. A 429 is returned when the request exceeds the rate limit.