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/clientsResponse
{
"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
| Field | Type | Description |
|---|---|---|
id | string | Client ID |
org_id | string | Organisation ID |
name | string | Client display name |
created_at | string | ISO 8601 creation timestamp |
Example
curl -H "Authorization: Bearer $TOKEN" \
https://loop.solve-studio.co/api/v1/clients