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
| Plan | Requests/minute | Requests/day |
|---|
| Free | 10 | 1,000 |
| Professional | 60 | 10,000 |
| Enterprise | 300 | Unlimited |
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:
| Code | Meaning |
|---|
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing API key |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found - Resource doesn’t exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Server Error - Something went wrong |
Getting Help