API Reference
Build custom integrations with the Loom API.
The Loom API is RESTful and resource-oriented. All responses are JSON.
Authentication
Currently, the API relies on session-based authentication for frontend usage. For server-side access, you should use the FORUMS_API_KEY to interact directly with the backend.
Roadmaps
Manage your product roadmaps.
GET/api/roadmaps
List all roadmaps visible to the current user.
POST/api/roadmaps
Create a new roadmap workspace.
GET/api/roadmaps/:id
Retrieve a specific roadmap and its metadata.
Features (Threads)
Interact with individual feature requests.
GET/api/roadmaps/:id/features
Get all features (threads) for a specific roadmap.
POST/api/roadmaps/:id/features
Create a new feature request on a roadmap.
DELETE/api/features/:id
Delete a feature request.
Errors
The API uses standard HTTP response codes to indicate the success or failure of an API request.
200 OK- Request succeeded.400 Bad Request- Invalid input.401 Unauthorized- Authentication failed.404 Not Found- Resource does not exist.