Lazystic API Reference

The Lazystic API is organized around REST. Our API has predictable resource-oriented URLs, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

Base URL

https://api.lazystic.com

Response Format

All responses follow a consistent format with an ok boolean field.

Success
{
  "ok": true,
  "data": { ... }
}
Error
{
  "ok": false,
  "error": "Message",
  "code": "ERROR_CODE"
}