Skip to main content

How to Use the Manage It API

This guide provides a comprehensive overview of the Manage It API and how to integrate with it.

Quick Start

  1. Get your API key from the dashboard
  2. Choose your base URL (sandbox or production)
  3. Make your first request using any of our endpoints

Authentication

All API requests require authentication using your API key:

Authorization: Bearer YOUR_API_KEY

Base URLs

  • Production: https://app.getmanageit.io/api
  • Development: https://dev.getmanageit.io/api

Available Endpoints

Our API is organized into several main categories:

Making Requests

Basic Request Format

curl -X GET "https://app.getmanageit.io/api/endpoint" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"

Response Format

All responses follow this structure:

{
"success": true,
"data": {
// Your data here
},
"meta": {
"total": 100,
"page": 1,
"limit": 10
}
}

Error Handling

Status CodeDescription
200Success
400Bad Request
401Unauthorized
404Not Found
429Rate Limited
500Server Error

Next Steps

  • Browse the individual endpoint documentation above for detailed API reference
  • Visit our troubleshooting guide for common issues

Need help? Contact us at [email protected]