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

Clients

List clients in your organisation.

Clients represent the companies or teams whose projects you manage in Loop. Each client can have multiple projects (websites or boards).

List clients

Returns all clients in your organisation.

GET /api/v1/clients

Response

{
  "data": [
    {
      "id": "client-001",
      "org_id": "org-001",
      "name": "Acme Corp",
      "created_at": "2025-05-01T09:00:00Z"
    },
    {
      "id": "client-002",
      "org_id": "org-001",
      "name": "Globex Industries",
      "created_at": "2025-06-01T12:00:00Z"
    }
  ],
  "meta": { "total": 2, "limit": 100, "offset": 0 }
}

Fields

FieldTypeDescription
idstringClient ID
org_idstringOrganisation ID
namestringClient display name
created_atstringISO 8601 creation timestamp

Example

curl -H "Authorization: Bearer $TOKEN" \
  https://loop.solve-studio.co/api/v1/clients

Tickets

List, update, and generate AI-powered developer tickets.

MCP Server

Connect Loop Feedback to any MCP-compatible AI tool using the Model Context Protocol.

On this page

List clientsResponseFieldsExample