Skip to main content

Overview

The Manage.Management API allows you to programmatically access and manage your building data.
The API is currently in beta. Contact us for access.

Base URL

https://api.manage.management/v1

Authentication

All API requests require authentication using a Bearer token.
curl -X GET "https://api.manage.management/v1/buildings" \
  -H "Authorization: Bearer YOUR_API_KEY"

Rate Limits

PlanRequests/minuteRequests/day
Free101,000
Professional6010,000
Enterprise300Unlimited

Response Format

All responses are returned in JSON format:
{
  "success": true,
  "data": { ... },
  "meta": {
    "page": 1,
    "limit": 20,
    "total": 100
  }
}

Error Handling

Errors return appropriate HTTP status codes:
CodeMeaning
400Bad Request - Invalid parameters
401Unauthorized - Invalid or missing API key
403Forbidden - Insufficient permissions
404Not Found - Resource doesn’t exist
429Too Many Requests - Rate limit exceeded
500Server Error - Something went wrong

Getting Help