# Get all executionscurl -X GET "https://api.getcatalog.ai/v1/products" \ -H "x-api-key: $CATALOG_API_KEY"# Get only completed executionscurl -X GET "https://api.getcatalog.ai/v1/products?status=completed" \ -H "x-api-key: $CATALOG_API_KEY"
List all extracts with status. Shows all extract jobs, their current status, and when they were created.
GET
https://api.getcatalog.ai
/
v1
/
products
Copy
# Get all executionscurl -X GET "https://api.getcatalog.ai/v1/products" \ -H "x-api-key: $CATALOG_API_KEY"# Get only completed executionscurl -X GET "https://api.getcatalog.ai/v1/products?status=completed" \ -H "x-api-key: $CATALOG_API_KEY"
Filter executions by status. Possible values: "processing", "completed", "failed"Note: If not provided, all executions are returned regardless of status.
# Get all executionscurl -X GET "https://api.getcatalog.ai/v1/products" \ -H "x-api-key: $CATALOG_API_KEY"# Get only completed executionscurl -X GET "https://api.getcatalog.ai/v1/products?status=completed" \ -H "x-api-key: $CATALOG_API_KEY"