FastCron API
With an API Token, you can work with your cronjobs, groups, and account settings without logging in.
The API token is a 32-character string generated for all FastCron users. You can visit your Profile page to copy your API key.
API endpoint
Send all API requests via HTTP to a URL with the format
For example, to list your cronjobs, send your HTTP request to
Authentication and request format
FastCron requires a token
variable sent in POST body or GET parameters.
POST
Send all data including the token
to:
The POST body must be either query string or JSON format:
GET variables
Example requests:
Response format
The response is in JSON format and includes these members:
Name | Description |
---|---|
status | Either success or error. |
code | The error code, 0 means ok/success. |
data | Result data, available in success result only |
message | The error message, available in error result only |
Example request
Success response
Error response
Rate limit
The rate limit for API requests is 1 request per second.
If you exceed that limit, you’ll get HTTP error code 503 Service Temporarily Unavailable
.