List Extraction Agents
GET/api/v1/extraction/extraction-agents
List Extraction Agents
Query Parameters
organization_id: optional string
project_id: optional string
Cookie Parameters
session: optional string
Returns
List Extraction Agents
curl https://api.cloud.llamaindex.ai/api/v1/extraction/extraction-agents \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"[
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"config": {
"chunk_mode": "PAGE",
"citation_bbox": true,
"cite_sources": true,
"confidence_scores": true,
"extract_model": "openai-gpt-4-1",
"extraction_mode": "FAST",
"extraction_target": "PER_DOC",
"high_resolution_mode": true,
"invalidate_cache": true,
"multimodal_fast_mode": true,
"num_pages_context": 1,
"page_range": "page_range",
"parse_model": "openai-gpt-4o",
"priority": "low",
"system_prompt": "system_prompt",
"use_reasoning": true
},
"data_schema": {
"foo": {
"foo": "bar"
}
},
"name": "name",
"project_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "2019-12-27T18:11:19.117Z",
"custom_configuration": "default",
"updated_at": "2019-12-27T18:11:19.117Z"
}
]Returns Examples
[
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"config": {
"chunk_mode": "PAGE",
"citation_bbox": true,
"cite_sources": true,
"confidence_scores": true,
"extract_model": "openai-gpt-4-1",
"extraction_mode": "FAST",
"extraction_target": "PER_DOC",
"high_resolution_mode": true,
"invalidate_cache": true,
"multimodal_fast_mode": true,
"num_pages_context": 1,
"page_range": "page_range",
"parse_model": "openai-gpt-4o",
"priority": "low",
"system_prompt": "system_prompt",
"use_reasoning": true
},
"data_schema": {
"foo": {
"foo": "bar"
}
},
"name": "name",
"project_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "2019-12-27T18:11:19.117Z",
"custom_configuration": "default",
"updated_at": "2019-12-27T18:11:19.117Z"
}
]