Skip to main content
POST
/
copycat_history
/
get
/
{copycat_history_id}
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
  }
}
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

copycat_history_id
string
required
The history ID returned when you triggered the CopyCat

Headers

Authorization
string
required
Your API key should be just token

Response

copycat_history_id
string
The history ID you queried
copycat_id
string
The ID of the CopyCat that was executed
status
string
Current status of the execution (e.g., “completed”, “in_progress”, “failed”)
result
object
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
  }
}