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.
Getting Started
Learn how to authenticate and make your first API call
Authentication
Bearer tokens, API keys, and session management
Error Handling
Standard error codes and how to handle them
Rate Limits
Understand and work within our rate limits
Base URL
https://api.lazystic.comResponse Format
All responses follow a consistent format with an ok boolean field.
Success
{
"ok": true,
"data": { ... }
}Error
{
"ok": false,
"error": "Message",
"code": "ERROR_CODE"
}