Get Pipeline Document
$ llamacloud-prod pipelines:documents get
GET/api/v1/pipelines/{pipeline_id}/documents/{document_id}
Return a single document for a pipeline.
Get Pipeline Document
llamacloud-prod pipelines:documents get \
--api-key 'My API Key' \
--pipeline-id 182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e \
--document-id document_id{
"id": "id",
"metadata": {
"foo": "bar"
},
"text": "text",
"excluded_embed_metadata_keys": [
"string"
],
"excluded_llm_metadata_keys": [
"string"
],
"page_positions": [
0
],
"status_metadata": {
"foo": "bar"
}
}Returns Examples
{
"id": "id",
"metadata": {
"foo": "bar"
},
"text": "text",
"excluded_embed_metadata_keys": [
"string"
],
"excluded_llm_metadata_keys": [
"string"
],
"page_positions": [
0
],
"status_metadata": {
"foo": "bar"
}
}