API Reference
API Overview
Introduction to our REST API
4 min readLast updated: Jan 10, 2026
# API Overview
Our REST API allows you to programmatically access and manage your data.
Base URL
All API requests should be made to:
https://api.example.com/v1Authentication
We use API keys for authentication. Include your key in the header:
Authorization: Bearer YOUR_API_KEYRate Limits
- Free plan: 100 requests/minute
- Business plan: 1,000 requests/minute
- Enterprise: Unlimited
Response Format
All responses are in JSON format:
{
"success": true,
"data": { ... },
"meta": {
"page": 1,
"total": 100
}
}Errors
Error responses include a message and code:
{
"success": false,
"error": {
"code": "INVALID_API_KEY",
"message": "The API key provided is invalid"
}
}
```