Read File
POST/api/v1/retrieval/files/read
Read the parsed text content of a specific file.
Read File
curl https://api.cloud.llamaindex.ai/api/v1/retrieval/files/read \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY" \
-d '{
"file_id": "file_id",
"index_id": "idx-abc123"
}'{
"content": "content"
}Returns Examples
{
"content": "content"
}