Paginated List Pipeline Documents
$ llamacloud-prod pipelines:documents list
GET/api/v1/pipelines/{pipeline_id}/documents/paginated
Return a list of documents for a pipeline.
Paginated List Pipeline Documents
llamacloud-prod pipelines:documents list \
--api-key 'My API Key' \
--pipeline-id 182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e{
"documents": [
{
"id": "id",
"metadata": {
"foo": "bar"
},
"text": "text",
"excluded_embed_metadata_keys": [
"string"
],
"excluded_llm_metadata_keys": [
"string"
],
"page_positions": [
0
],
"status_metadata": {
"foo": "bar"
}
}
],
"limit": 0,
"offset": 0,
"total_count": 0
}Returns Examples
{
"documents": [
{
"id": "id",
"metadata": {
"foo": "bar"
},
"text": "text",
"excluded_embed_metadata_keys": [
"string"
],
"excluded_llm_metadata_keys": [
"string"
],
"page_positions": [
0
],
"status_metadata": {
"foo": "bar"
}
}
],
"limit": 0,
"offset": 0,
"total_count": 0
}