Skip to main content
The Lazy Raccoon API lets you manage your configs, teams, and versions programmatically. The CLI uses this same API under the hood.

Base URL

https://lazyraccoon.dev/api

Authentication

All endpoints require authentication via an API key in the Authorization header:
Authorization: Bearer lr_your_api_key_here
You can generate an API key by running lazy login or from the dashboard.

Response format

All responses are JSON. Successful responses return the requested data directly. Error responses follow this format:
{
  "error": "Description of what went wrong"
}

Status codes

CodeDescription
200Success
201Created
204Deleted (no content)
400Bad request (invalid input)
401Unauthorized (missing or invalid API key)
403Forbidden (insufficient permissions or plan limit)
404Not found
413Payload too large (max 512 KB)
500Internal server error