# Get all executionscurl -X GET "https://api.getcatalog.ai/v1/crawl" \ -H "x-api-key: $CATALOG_API_KEY"# Get only completed executionscurl -X GET "https://api.getcatalog.ai/v1/crawl?status=completed" \ -H "x-api-key: $CATALOG_API_KEY"# Get first 50 executionscurl -X GET "https://api.getcatalog.ai/v1/crawl?limit=50" \ -H "x-api-key: $CATALOG_API_KEY"
List all crawls with status. Shows all crawl jobs, their current status, and when they were created.
GET
https://api.getcatalog.ai
/
v1
/
crawl
Copy
# Get all executionscurl -X GET "https://api.getcatalog.ai/v1/crawl" \ -H "x-api-key: $CATALOG_API_KEY"# Get only completed executionscurl -X GET "https://api.getcatalog.ai/v1/crawl?status=completed" \ -H "x-api-key: $CATALOG_API_KEY"# Get first 50 executionscurl -X GET "https://api.getcatalog.ai/v1/crawl?limit=50" \ -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/crawl" \ -H "x-api-key: $CATALOG_API_KEY"# Get only completed executionscurl -X GET "https://api.getcatalog.ai/v1/crawl?status=completed" \ -H "x-api-key: $CATALOG_API_KEY"# Get first 50 executionscurl -X GET "https://api.getcatalog.ai/v1/crawl?limit=50" \ -H "x-api-key: $CATALOG_API_KEY"