Loop Developer API
Build integrations with Loop Feedback using our REST API and MCP server.
Overview
The Loop Developer API gives you programmatic access to your organisation's feedback, projects, board cards, and AI-generated developer tickets. Use it to build custom integrations, automate workflows, or connect Loop to your existing tools.
What you can do
- List and manage projects — retrieve projects across all your clients
- Query feedback — filter by status, type, and project with pagination
- Update feedback status — move items through your review pipeline via API
- Read and post comments — add context to feedback items programmatically
- Manage board cards — access Kanban boards, lists, and cards
- Work with dev tickets — list, update, and generate AI-powered tickets from feedback
- AI tool integration — use the MCP server to access Loop data from Cursor, Claude Code, Windsurf, and more
Base URL
All API endpoints are served from:
https://loop.solve-studio.co/api/v1Authentication
Every request must include a Bearer token in the Authorization header:
curl -H "Authorization: Bearer tok_your_token_here" \
https://loop.solve-studio.co/api/v1/projectsAPI tokens can be generated from Settings > Developer API in the Loop dashboard.
Requirements
- Plan: Pro or Business (Starter plans do not have API access)
- Role: Owner or Developer (Client role members cannot create or use tokens)
Response format
All responses use a consistent JSON envelope:
// List endpoints
{
"data": [...],
"meta": {
"total": 42,
"limit": 50,
"offset": 0
}
}
// Single resource endpoints
{
"data": { ... }
}
// Errors
{
"error": "Description of what went wrong"
}HTTP status codes
| Code | Meaning |
|---|---|
200 | Success |
201 | Resource created |
400 | Bad request (invalid params or body) |
401 | Unauthorized (missing or invalid token) |
403 | Forbidden (wrong plan or role) |
404 | Resource not found |
500 | Internal server error |
Next steps
- What is Loop? — an overview of the platform, features, and how it compares to alternatives
- Getting Started — generate an API key and make your first request
- API Reference — full endpoint documentation
- MCP Server — connect Loop to Cursor, Claude Code, Windsurf, and other AI tools
Learn more
- Loop vs BugHerd — feature comparison for teams evaluating alternatives
- Loop vs Marker.io — see how Loop\u2019s multi-channel approach compares
- Loop vs Trello — why purpose-built feedback tools beat general kanban boards
- Pricing — free Starter plan, Pro at \u00a310/seat/mo, Business at \u00a324/seat/mo