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
API Reference

API Reference

Complete reference for all Loop Developer API V1 endpoints.

Conventions

Base URL

https://loop.solve-studio.co/api/v1

Authentication

All endpoints require a Bearer token:

Authorization: Bearer tok_your_token_here

Content type

Request bodies must be JSON with the Content-Type: application/json header. All responses return JSON.

Response envelope

List endpoints return:

{
  "data": [...],
  "meta": { "total": 0, "limit": 50, "offset": 0 }
}

Single resource endpoints return:

{
  "data": { ... }
}

Error responses return:

{
  "error": "Human-readable error message"
}

Pagination

List endpoints accept limit (max 100, default 50) and offset (default 0) query parameters.

Endpoint groups

GroupDescription
ProjectsList and retrieve projects
FeedbackCRUD operations on feedback items
CommentsRead and create comments on feedback
BoardsBoard lists and cards
TicketsAI-generated developer tickets
ClientsOrganisation clients

Getting Started

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

Projects

List and retrieve projects in your organisation.

On this page

ConventionsBase URLAuthenticationContent typeResponse envelopePaginationEndpoint groups