> ## Documentation Index
> Fetch the complete documentation index at: https://kb.manage.management/llms.txt
> Use this file to discover all available pages before exploring further.

# API Introduction

> Getting started with the Manage.Management API

## Overview

The Manage.Management API allows you to programmatically access and manage your building data.

<Info>
  The API is currently in beta. Contact us for access.
</Info>

## Base URL

```
https://api.manage.management/v1
```

## Authentication

All API requests require authentication using a Bearer token.

```bash theme={null}
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    |

## Response Format

All responses are returned in JSON format:

```json theme={null}
{
  "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

<CardGroup cols={2}>
  <Card title="API Support" icon="headset" href="mailto:api@manage.management">
    Contact our API support team
  </Card>

  <Card title="Status Page" icon="signal" href="https://status.manage.management">
    Check API status and uptime
  </Card>
</CardGroup>
