Base URL
https://api.robolog.us
Developer Documentation
Find every available API endpoint in one place. This page is designed to make endpoint discovery fast for engineers and client teams.
/healthReturns API availability and service name.
No auth required
{}{"status":"ok","service":"openclaw-api"}503 Service unavailable during restart
/projectsCreates a project intake record from user prompt and metadata.
Bearer token required
{"title":"AI customer support portal","summary":"Build MVP with ticket routing and bot triage","problem_statement":"Support queues are too slow","target_users":"support managers, support agents","goals":["reduce first response time"],"constraints":["launch in 6 weeks"],"priority":"high"}{"id":"prj_123","created_at":"2026-03-14T10:15:00Z","intake":{"title":"AI customer support portal"}}401 Missing bearer token 422 Invalid request body
/projectsReturns all projects ordered by creation date.
Bearer token required
{}{"projects":[{"id":"prj_123","created_at":"2026-03-14T10:15:00Z"}]}401 Missing bearer token
/projects/{project_id}Fetches one project with intake, outputs, tasks, and assignments.
Bearer token required
{}{"id":"prj_123","intake":{"title":"AI customer support portal"},"tasks":[]}401 Missing bearer token 404 Project not found
/projects/{project_id}/generateRuns PM outline, Agile planning, assignments, and all deliverables.
Bearer token required
{}{"id":"prj_123","outline":{},"epics":[],"tasks":[],"deliverables":{}}401 Missing bearer token 404 Project not found
/projects/{project_id}/generate/outlineGenerates the project outline module only.
Bearer token required
{}{"id":"prj_123","outline":{"scope":"..."}}401 Missing bearer token 404 Project not found
/projects/{project_id}/generate/agileGenerates epics, stories, and initial task assignments.
Bearer token required
{}{"id":"prj_123","epics":[],"tasks":[],"assignments":[]}401 Missing bearer token 404 Project not found
/projects/{project_id}/generate/architectureGenerates architecture documentation deliverable.
Bearer token required
{}{"id":"prj_123","deliverables":{"architecture":"..."}}401 Missing bearer token 404 Project not found
/projects/{project_id}/generate/ai-engineeringGenerates AI engineering plan deliverable.
Bearer token required
{}{"id":"prj_123","deliverables":{"ai_engineering_plan":"..."}}401 Missing bearer token 404 Project not found
/projects/{project_id}/generate/githubGenerates GitHub workflow, agents document, and project plan document.
Bearer token required
{}{"id":"prj_123","deliverables":{"github_strategy":"...","agents":"..."}}401 Missing bearer token 404 Project not found
/projects/{project_id}/tasks/{task_id}Updates a task status: backlog, in_progress, blocked, or done.
Bearer token required
{"status":"in_progress"}{"id":"prj_123","tasks":[{"id":"tsk_1","status":"in_progress"}]}401 Missing bearer token 404 Task not found 422 Invalid status
/projects/{project_id}/stories/{story_id}/startMoves backlog tasks for the story into in_progress.
Bearer token required
{}{"id":"prj_123","tasks":[{"story_id":"str_1","status":"in_progress"}]}401 Missing bearer token 404 Story not found or no backlog tasks
/projects/{project_id}/statusReturns timeline entries for project generation and execution progress.
Bearer token required
{}{"items":[{"phase":"outline_generated","progress":35}]}401 Missing bearer token 404 Project not found
curl -X POST https://api.robolog.us/projects \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <token>" \
-d '{
"title": "AI customer support portal",
"summary": "Build MVP with ticket routing and bot triage",
"problem_statement": "Support queues are too slow",
"target_users": "support managers, support agents",
"goals": ["reduce first response time", "improve CSAT"],
"constraints": ["launch in 6 weeks"],
"priority": "high"
}'