The cron expression for every 2 minutes
*/2 * * * *
The minute step */2 resolves to 0, 2, 4, 6, …, 58 — every even minute. The job fires 30 times per hour, 720 times per day. For a slightly less aggressive cadence, see every 5 minutes.
See the dedicated guide for the full breakdown: Cron every minute.
Paste it into the editor above to see the next runs on a calendar.