# Get all executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search" \
-H "x-api-key: $CATALOG_API_KEY"
# Get only completed executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search?status=completed" \
-H "x-api-key: $CATALOG_API_KEY"
# Get first 50 executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search?page_size=50" \
-H "x-api-key: $CATALOG_API_KEY"
{
"data": [
{
"execution_id": "agentic-a1b2c3d4-1735123456789",
"status": "completed",
"created_at": "2025-01-15T10:30:00.000Z"
},
{
"execution_id": "agentic-e5f6g7h8-1735127000000",
"status": "processing",
"created_at": "2025-01-15T11:00:00.000Z"
},
{
"execution_id": "agentic-i9j0k1l2-1735120000000",
"status": "failed",
"created_at": "2025-01-15T09:15:00.000Z"
}
],
"pagination": {
"page": 1,
"page_size": 20,
"total_items": 3,
"total_pages": 1,
"has_next": false,
"has_prev": false
},
"meta": {}
}
List all agentic searches with status. Shows all search jobs, their current status, and when they were created.
# Get all executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search" \
-H "x-api-key: $CATALOG_API_KEY"
# Get only completed executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search?status=completed" \
-H "x-api-key: $CATALOG_API_KEY"
# Get first 50 executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search?page_size=50" \
-H "x-api-key: $CATALOG_API_KEY"
{
"data": [
{
"execution_id": "agentic-a1b2c3d4-1735123456789",
"status": "completed",
"created_at": "2025-01-15T10:30:00.000Z"
},
{
"execution_id": "agentic-e5f6g7h8-1735127000000",
"status": "processing",
"created_at": "2025-01-15T11:00:00.000Z"
},
{
"execution_id": "agentic-i9j0k1l2-1735120000000",
"status": "failed",
"created_at": "2025-01-15T09:15:00.000Z"
}
],
"pagination": {
"page": 1,
"page_size": 20,
"total_items": 3,
"total_pages": 1,
"has_next": false,
"has_prev": false
},
"meta": {}
}
"processing", "completed", "failed"Note: If not provided, all executions are returned regardless of status.Show Execution Summary
GET /v2/agentic-search/{execution_id} to check detailed status and results.Format: agentic-{uuid}-{timestamp}"processing" - Execution is currently running"completed" - Execution finished successfully"failed" - Execution failed or was abortedShow Pagination Object
# Get all executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search" \
-H "x-api-key: $CATALOG_API_KEY"
# Get only completed executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search?status=completed" \
-H "x-api-key: $CATALOG_API_KEY"
# Get first 50 executions
curl -X GET "https://api.getcatalog.ai/v2/agentic-search?page_size=50" \
-H "x-api-key: $CATALOG_API_KEY"
{
"data": [
{
"execution_id": "agentic-a1b2c3d4-1735123456789",
"status": "completed",
"created_at": "2025-01-15T10:30:00.000Z"
},
{
"execution_id": "agentic-e5f6g7h8-1735127000000",
"status": "processing",
"created_at": "2025-01-15T11:00:00.000Z"
},
{
"execution_id": "agentic-i9j0k1l2-1735120000000",
"status": "failed",
"created_at": "2025-01-15T09:15:00.000Z"
}
],
"pagination": {
"page": 1,
"page_size": 20,
"total_items": 3,
"total_pages": 1,
"has_next": false,
"has_prev": false
},
"meta": {}
}