API Overview
The SimpleCron API is a RESTful API that allows you to programmatically manage your cron jobs. All API requests should be made to:
https://1z3oi0b22h.execute-api.ap-northeast-2.amazonaws.com/productionBase URL
All API endpoints are relative to the base URL:
https://1z3oi0b22h.execute-api.ap-northeast-2.amazonaws.com/productionRequest Format
- All requests must include the
Content-Type: application/jsonheader - Request bodies should be valid JSON
- All timestamps are in ISO 8601 format
- All times are in UTC unless a timezone is specified
Response Format
All responses are JSON formatted. Successful responses will have appropriate HTTP status codes (200, 201, 204).
{
"success": true,
"data": {
// Response data here
}
}Rate Limiting
API requests are rate limited based on your plan:
- Free Plan: 60 requests per minute
- Pro Plan: 300 requests per minute