List Parse Jobs
GET/api/v2/parse
List parse jobs for the current project with optional status filtering and pagination.
Query Parameters
organization_id: optional string
project_id: optional string
Cookie Parameters
session: optional string
Returns
List Parse Jobs
curl https://api.cloud.llamaindex.ai/api/v2/parse \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"{
"items": [
{
"id": "id",
"project_id": "project_id",
"status": "PENDING",
"created_at": "2019-12-27T18:11:19.117Z",
"error_message": "error_message",
"name": "name",
"updated_at": "2019-12-27T18:11:19.117Z"
}
],
"next_page_token": "next_page_token",
"total_size": 0
}Returns Examples
{
"items": [
{
"id": "id",
"project_id": "project_id",
"status": "PENDING",
"created_at": "2019-12-27T18:11:19.117Z",
"error_message": "error_message",
"name": "name",
"updated_at": "2019-12-27T18:11:19.117Z"
}
],
"next_page_token": "next_page_token",
"total_size": 0
}