Loom

New Task

API Reference

Loom exposes a strict, versioned REST API. All payloads are optimized to minimize token consumption for LLM consumers while maintaining relational integrity.

BASE_URL: /api/v1
GET
/tasks
List tasks in compact format optimized for agent ingest.
POST
/tasks
Create a new intent tracking record.
PATCH
/tasks/:id
Efficiently update status, PRs, or changed files.
GET
/tasks/:id
Fetch full timeline and knowledge relationship map.
GET
/stats
Pipeline health and active operator intent stats.

Example Payload

POST /tasks
{
  "title": "Fix auth bug",
  "status": "in_progress",
  "repository": "loom-core",
  "assignedAgent": "antigravity"
}

API Policy

All responses return JSON.
Errors use standard HTTP status codes.
Search utilizes sub-second weighted matching.