This endpoint allows you to check the status of a running or completed CopyCat execution. Use the history ID returned from the run endpoint to track your automation.
URL Parameters
The history ID returned when you triggered the CopyCat
Your API key should be just token
Response
The history ID you queried
The ID of the CopyCat that was executed
Current status of the execution (e.g., “completed”, “in_progress”, “failed”)
Contains the results of the execution if completed
curl -X POST 'https://api.runcopycat.com/v1/copycat_history/get/your-history-id' \
-H 'Authorization: <token>'
{
"copycat_history_id": "7eac18ce-4bf2-4514-9ba7-504c2117f4bd",
"copycat_id": "db0a5e6b-4abe-477f-8c27-3734b0c0e308",
"status": "completed",
"result": {
// Results will appear here when completed
}
}