Documentation Index
Fetch the complete documentation index at: https://docs.crewship.dev/llms.txt
Use this file to discover all available pages before exploring further.
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 message (only present when failed)
When the run was created (ISO 8601)
When execution started (ISO 8601), or null
When the run finished (ISO 8601), or null
curl https://api.crewship.dev/v1/runs/run_xyz789abc \
-H "Authorization: Bearer YOUR_API_KEY"
{
"id": "run_xyz789abc",
"version_id": "ver_abc123xyz",
"deployment_id": "dep_abc123xyz",
"status": "running",
"input": {
"topic": "AI agents"
},
"output": null,
"error_message": null,
"created_at": "2024-01-15T10:35:00Z",
"started_at": "2024-01-15T10:35:02Z",
"completed_at": null
}