API reference

Everything you need to integrate with our platform. The API is organized around REST — it uses predictable resource-oriented URLs, JSON request/response bodies, and standard HTTP status codes.

Base URL

https://api.cutz.cloud/api/v1

Quick start

Make your first API call in under a minute. Replace YOUR_API_KEY with your key from the dashboard.

cURL
curl https://api.cutz.cloud/api/v1/resources \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response format

All responses are returned as JSON. Successful requests return a data object. Errors include a code and human-readable message.

  • 200 OK — Request succeeded

  • 401 Unauthorized — Invalid or missing API key

  • 429 Too many requests — Rate limit exceeded

Last updated