built by solve-studio

Privacy·Terms

Loop Developers
Loop Developers
API ReferenceMCPDashboard

Introduction

Loop Developer APIGetting Started

Reference

API ReferenceProjectsFeedbackCommentsBoardsTicketsClients
MCP ServerMCP SetupMCP Tools

Other

Rate Limits

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/v1

Authentication

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/projects

API 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

CodeMeaning
200Success
201Resource created
400Bad request (invalid params or body)
401Unauthorized (missing or invalid token)
403Forbidden (wrong plan or role)
404Resource not found
500Internal 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

Getting Started

Generate an API key and make your first request to the Loop Developer API.

On this page

OverviewWhat you can doBase URLAuthenticationRequirementsResponse formatHTTP status codesNext stepsLearn more