- What's the shortest interval Crontap supports?
- Every 1 minute on paid plans. That beats Vercel Cron Hobby (hourly minimum) and matches Google Cloud Scheduler (1 minute) without the per-target IAM dance Cloud Scheduler requires. GitHub Actions cron sits at a 5 minute minimum and can drift 15 minutes during peak per their own docs.
- Does this fix WordPress wp-cron missing my scheduled tasks?
- Yes, this is the documented fix. wp-cron is pseudo-cron: it only fires when a visitor loads the site. Low-traffic sites silently miss tasks. Define DISABLE_WP_CRON in wp-config.php and let Crontap hit wp-cron.php on a real external clock at any cadence, in your store's business timezone. WooCommerce Action Scheduler benefits the same way.
- How is this different from Zapier's built-in Schedule trigger?
- Zapier charges one task per scheduled run. At one run per minute that is 43,200 tasks a month for a single Zap. Crontap charges zero tasks per invocation. Keep Zapier as the workflow brain and let Crontap fire the Catch Hook at any cadence, full cron expressions, per-schedule timezone, detailed logs.
- What can I schedule with Crontap?
- Any HTTP endpoint. If it accepts a GET, POST, PUT, PATCH or DELETE, Crontap can hit it on a schedule. That includes your own APIs, cloud functions on Cloud Run, AWS Lambda Function URLs, Vercel and Netlify functions, Railway and Fly.io apps, WordPress wp-cron.php, Shopify Admin API, HubSpot-adjacent backends, webhooks from Zapier, Make, n8n and IFTTT, cache warms, payment retries, AI agents, and scheduled notifications.
- Does Crontap support cron syntax?
- Yes. You can schedule with classic cron expressions (5-field or 6-field with seconds), and you'll see the next upcoming runs as you type. If crons aren't your thing, you can also schedule in plain English like "every 15 minutes" or "every weekday at 09:30".
- Can I get notified when a scheduled call fails?
- Yes. When a call fails with a server error (5xx), times out, or can't connect, Crontap retries it automatically with exponential backoff, up to 5 times, and only alerts you if the retries are used up. Retries are on by default for new schedules and can be turned off per schedule. Pro lets you tune the number of retries, the starting delay, and whether to also retry on 429 or other 4xx responses. Notifications can go to Slack, Discord, Telegram, email or any custom webhook via the Integrations panel on each schedule.
- Do I need to know how to write cron expressions?
- No. Crontap ships with templates for the most common patterns (hourly, daily, weekdays, monthly, etc.) and a human-readable scheduler so you never have to write `0 */4 * * *` unless you want to. If you do want to, we have a free cron expression debugger at tool.crontap.com/cronjob-debugger.
- What happens to my schedules if a call takes longer than expected?
- Crontap enforces a sensible timeout per request. If a call exceeds it, the run is marked as failed and (if configured) your failure integrations fire. Your next scheduled run is unaffected - overlapping runs are handled cleanly so one slow call won't stack up duplicate jobs.
- Can Crontap process or transform results with AI?
- Yes. AI integrations run an LLM over each schedule's HTTP response and forward the transformed result, such as a summary, normalized JSON, extracted fields or a triage verdict, to any URL you choose. They're a Pro feature on daily-cadence schedules (1 per schedule); Ultra unlocks hourly cadence and unlimited AI integrations per schedule. Anyone can preview one on any plan with the "Perform test" button before upgrading. Crontap Pro starts at $2.99/mo.
- Do you support heartbeat / dead man's switch monitoring?
- Yes. Create a heartbeat, ping its unique URL from your cron job or worker, and Crontap alerts you when expected pings arrive late or fail. Learn about heartbeat monitoring.
- Is there a free tier?
- Yes. Starter includes 2 combined schedules, uptime monitors, and heartbeats. It allows 1 uptime monitor at a 1-day cadence and 1 heartbeat at an hourly cadence, plus email notifications and 100 log entries per schedule. Pro starts at $2.99/mo with 3 to 20 combined items at 1-minute cadence. Ultra offers 25 to 1,000 combined items, API access, and priority support.