## Introduction `GET https://getkollek.com/api/health` The KolleK API gives you programmatic access to everything in your account: collections, collection types, custom fields and locations. The API is organized around REST, returns JSON on every endpoint, and loosely follows the JSON:API specification for response shapes. There is no test mode. Every request is processed against your production account, so be careful with destructive calls. The API does not support bulk updates. Work on one object per request. ### Example request ```bash curl https://getkollek.com/api/health \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "message": "ok", "services": { "database": "up" } } ```