API Overview
The Keymate API provides a comprehensive set of endpoints for security scanning, monitoring, and compliance management.
Base URL
https://api.keymate.ai/v1
Authentication
All API requests require authentication using your API key. Include it in the request header:
Authorization: Bearer your_api_key
Rate Limits
- Free tier: 100 requests per minute
- Pro tier: 1000 requests per minute
- Enterprise tier: Custom limits
Response Format
All responses are in JSON format:
{
"success": true,
"data": {
// Response data
},
"error": null
}
Error Handling
Errors follow this format:
{
"success": false,
"data": null,
"error": {
"code": "ERROR_CODE",
"message": "Error description"
}
}