API Reference
API Reference
Complete reference for all Loop Developer API V1 endpoints.
Conventions
Base URL
https://loop.solve-studio.co/api/v1Authentication
All endpoints require a Bearer token:
Authorization: Bearer tok_your_token_hereContent 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.