cronlytic

Schedule and manage cron-based HTTP requests and webhooks via the Cronlytic API.

76|18|Updated Dec 12, 2025
One-click install
npx skills add https://github.com/vm0-ai/vm0-skills --skill cronlytic
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cronlytic
Source: https://github.com/vm0-ai/vm0-skills/tree/main/cronlytic
Command: npx skills add https://github.com/vm0-ai/vm0-skills --skill cronlytic

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill lets you schedule recurring HTTP requests and webhooks, pause/resume jobs, and monitor execution logs.

Core Features & Use Cases

  • Create cron jobs for recurring HTTP calls
  • Pause/resume jobs to control execution
  • View job logs to monitor history

Quick Start

Create a health-check job: bash -c 'curl -s -X POST "https://api.cronlytic.com/prog/jobs" -H "X-API-Key: ${CRONLYTIC_API_KEY}" -H "X-User-ID: ${CRONLYTIC_USER_ID}" -H "Content-Type: application/json" -d '{"name":"health-check","url":"https://example.com/health","method":"GET","cron_expression":"*/5 * * * *"}' | jq .'

Frequently Asked Questions about cronlytic

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I schedule recurring HTTP requests with cron expressions?

Schedule recurring HTTP requests by creating a cron job via the Cronlytic API with a 5-field cron expression, target URL, HTTP method, and job name. The API handles execution on your specified schedule and returns job metadata including next_run_at timestamps.

Can I pause and resume cron jobs without deleting them?

Yes, pause and resume jobs to control execution without losing configuration. Cronlytic supports pausing active jobs and resuming them later, letting you temporarily stop recurring tasks and restart them on demand.

What do I need to get started with the Cronlytic API?

You need a Cronlytic API key and user ID to authenticate requests. Include these credentials in request headers (X-API-Key and X-User-ID) when calling the base URL https://api.cronlytic.com/prog/ to create and manage jobs.

How do I monitor execution history for scheduled jobs?

View job logs through the Cronlytic API to track execution history and job status. Logs include metadata, current status, and past run records, letting you audit whether webhooks and API calls executed successfully.

Can I use Cronlytic for webhook automation and health checks?

Yes, schedule webhooks and health-check requests as recurring cron jobs. Cronlytic supports any HTTP method and target URL, making it suitable for triggering integrations, monitoring endpoint availability, and automating API-driven workflows on a schedule.