create extension if not exists pg_cron; create extension if not exists http; select cron.schedule( 'webhook-every-minute', '* * * * *', $$ select status from http_post( 'https://some.site/your-url', '{"hello": "world"}', 'application/json' ) $$ );