Path Parameters
Run ID (e.g., run_xyz789abc)
Response
Run status: pending, running, succeeded, failed, canceled
Input provided when creating the run
Final output (only present when succeeded)
Error details (only present when failed)
When the run was created (ISO 8601)
When execution started (ISO 8601)
When the run finished (ISO 8601)
Total execution time in milliseconds
curl https://api.crewship.dev/v1/runs/run_xyz789abc \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data": {
"id": "run_xyz789abc",
"deployment_id": "dep_abc123xyz",
"project": "my-crew",
"status": "running",
"input": {
"topic": "AI agents"
},
"created_at": "2024-01-15T10:35:00Z",
"started_at": "2024-01-15T10:35:02Z"
}
}