Every 30 Minutes Cron

Example:
*/30 * * * * curl https://api.example.com/health
Use */30 * * * * to run twice per hour at :00 and :30. Common for polling APIs and health checks.
Try Cron Master →

FAQs

How to run at :15 and :45 instead?

Use 15,45 * * * * to specify exact minutes.