Retrieve the parsed contents of a vector store file.
GET
/vector_stores/{vector_store_id}/files/{file_id}/content
curl \
--request GET 'https://api.openai.com/v1/vector_stores/vs_abc123/files/file-abc123/content' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"object": "vector_store.file_content.page",
"data": [
{
"type": "string",
"text": "string"
}
],
"has_more": true,
"next_page": "string"
}