EveryDev.ai
Subscribe
Home
Tools

3,076+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2063
  • Coding1441
  • Infrastructure665
  • Marketing524
  • Projects470
  • Research437
  • Design408
  • Analytics371
  • MCP268
  • Security265
  • Testing255
  • Data249
  • Integration183
  • Prompts183
  • Communication172
  • Learning166
  • Extensions163
  • Voice146
  • Commerce132
  • DevOps115
  • Web84
  • Finance24
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Posthook
    Posthook icon

    Posthook

    Task Automation
    Featured

    Posthook is a managed webhook scheduling API for developers to reliably schedule reminders, follow-ups, expirations, and notifications at precise future times.

    Visit Website

    At a Glance

    Pricing
    Free tier available

    Validate a scheduling pattern end-to-end before production.

    Launch: $39/mo
    Growth: $99/mo
    Scale: $249/mo

    Engagement

    Available On

    API
    CLI
    SDK
    Web

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Task AutomationAPI Integration PlatformsWorkflow Automation

    Alternatives

    CronboxHostedClawsAssista AI
    Developer
    Posthook, Inc.New York, NYEst. 2018

    Listed Jul 2026

    About Posthook

    Posthook is a managed webhook scheduling service built and run by Carlos Gomez, a backend engineer who started the product in 2018 after needing reliable per-event scheduling for a social events app. It has been in continuous production since then, with the site reporting 99.98% uptime and over 98 million hooks scheduled to date.

    What It Is

    Posthook is a scheduling-as-a-service API that lets developers schedule HTTP callbacks (webhooks) to fire at a specific future time — relative delays, absolute UTC timestamps, or local times with timezone awareness. Rather than building and maintaining cron pollers, timestamp columns, or queue-backed job systems, developers make a single API call to schedule a hook, and Posthook handles delivery, retries, observability, and alerting. It is intentionally narrow: it is not a full workflow orchestration engine or general background job platform, but a focused tool for the "do this later, reliably" problem.

    How the Scheduling Model Works

    Posthook accepts three scheduling modes per hook:

    • Relative delay (postIn): fire in 30m, 24h, 7d, etc.
    • Absolute UTC (postAt): RFC 3339 timestamp
    • Local time with timezone (postAtLocal + timezone): DST-safe, handles spring-forward and fall-back automatically

    When the scheduled time arrives, Posthook POSTs a signed (HMAC-SHA256) payload to the developer's configured endpoint. Handlers can return a 202 and call back with ack/nack up to 3 hours later for long-running async jobs. Retries use fixed or exponential backoff with jitter and do not count against the monthly quota.

    Observability and Alerting

    Every hook delivery is captured and queryable — scheduling, attempts, response bodies, and cancellations — with retention from 7 to 90 days depending on plan. The dashboard supports per-delivery drill-down, health aggregation by endpoint, and bulk retry or replay by endpoint and time range. Anomaly alerting uses per-endpoint baselines learned from actual traffic, with alert speeds ranging from 15 minutes down to 30 seconds, routed to email, Slack, or webhook.

    Developer Tooling and Integrations

    Posthook ships official SDKs for Node.js/TypeScript, Python, and Go. The Node SDK (MIT-licensed, v1.2.0 as of March 2026) handles auth, pagination, retries, signature verification, and WebSocket delivery. A CLI enables local development by receiving webhooks on localhost via WebSocket — the same transport works for endpoints behind VPCs or firewalls. Config-as-code via TOML (posthook.toml) lets teams manage recurring schedules in version control and deploy with npx posthook apply. Framework guides cover Next.js, Express, FastAPI/Flask/Django, Go, and Rails.

    Update: Node SDK v1.2.0

    The Node.js SDK reached v1.2.0 in March 2026, adding WebSocket listener support (listen and stream APIs), an Express handler helper (signatures.expressHandler), async hook support with ack/nack callbacks, bulk retry/replay/cancel operations, and full TypeScript generics for typed payloads. The SDK requires Node.js 18+ and has a single runtime dependency (ws).

    Architecture and Reliability

    Posthook runs on Kubernetes across multiple availability zones with PostgreSQL using synchronous replication and automatic failover, and Pub/Sub with no single-zone dependency. Every hook is committed to a durable message queue before the API returns. The service has maintained 99.98% uptime since 2018 per its public uptime monitor. Payments are processed via Stripe; a Data Processing Agreement (DPA) is available for compliance needs.

    Posthook - 1

    Community Discussions

    Be the first to start a conversation about Posthook

    Share your experience with Posthook, ask questions, or help others learn from your insights.

    Pricing

    FREE

    Free

    Validate a scheduling pattern end-to-end before production.

    • 1,000 hooks/month
    • 3 projects
    • 7-day log retention
    • 15-min alerts
    • Email alerts

    Launch

    For early product teams. Onboarding drips, reminders, and expirations.

    $39
    per month
    • 20,000 hooks/month
    • 5 projects
    • 30-day log retention
    • 5-min alerts
    • Email & Slack alerts
    • Fixed and exponential retry strategies
    • Max 5 retries
    • Email support (24hr)

    Growth

    Popular

    For growing SaaS teams with multiple workflows across onboarding, notifications, and recovery.

    $99
    per month
    • 100,000 hooks/month
    • 15 projects
    • 60-day log retention
    • 2-min alerts
    • Email & Slack alerts
    • Bulk actions
    • Fixed and exponential retry strategies
    • Max 10 retries
    • Email support (24hr)

    Scale

    For mature platforms needing high-volume scheduling with faster alerts, longer retention, and bulk recovery.

    $249
    per month
    • 500,000 hooks/month
    • 50 projects
    • 90-day log retention
    • 30-sec alerts
    • Email, Slack & Webhook alerts
    • Bulk actions
    • Fixed and exponential retry strategies
    • Max 15 retries
    • Priority support (Email + Chat, 12hr)
    View official pricing

    Capabilities

    Key Features

    • Webhook scheduling via API (relative delay, absolute UTC, local timezone)
    • HMAC-SHA256 signed deliveries with replay protection
    • Async hooks with ack/nack callbacks up to 3 hours
    • Per-endpoint anomaly alerting with learned baselines
    • Bulk retry, replay, and cancel by endpoint and time range
    • 7–90 day delivery log retention with per-hook drill-down
    • Timezone-aware scheduling with automatic DST handling
    • Fixed and exponential backoff retries with jitter
    • Config-as-code recurring schedules via TOML
    • WebSocket delivery for endpoints behind VPCs or firewalls
    • CLI for local development webhook testing
    • Multi-project workspaces with separate keys and alerting
    • Official SDKs for Node.js/TypeScript, Python, and Go
    • Per-hook retry override
    • Idempotent delivery with hook ID as idempotency key

    Integrations

    Node.js
    TypeScript
    Python
    Go
    Next.js
    Express
    Fastify
    Django
    Flask
    FastAPI
    Rails
    Laravel
    Spring
    AWS Lambda
    Slack
    Stripe
    Vercel
    Netlify
    Cloudflare
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Posthook and help others make informed decisions.

    Developer

    Posthook, Inc.

    Posthook builds a focused webhook scheduling API for backend developers who need reliable per-event timing without maintaining custom infrastructure. Founded in 2018 by Carlos Gomez, a backend engineer with fifteen years of experience building production systems, the company operates as an independent, self-funded product. Posthook runs multi-zone infrastructure with synchronous replication and has maintained 99.98% uptime since launch. Support goes directly to the engineer who built the system.

    Founded 2018
    New York, NY
    1 employees
    Read more about Posthook, Inc.
    WebsiteGitHubLinkedInX / Twitter
    1 tool in directory

    Similar Tools

    Cronbox icon

    Cronbox

    Cronbox is a cloud-based cron job scheduling and monitoring tool that lets you create, manage, and monitor scheduled tasks via a simple web interface.

    HostedClaws icon

    HostedClaws

    AI assistant that reads your email, manages your calendar, and handles tasks via Telegram, working 24/7 while you focus on your business.

    Assista AI icon

    Assista AI

    Multi-agent AI platform that automates workflows across 100+ apps using natural language commands.

    Browse all tools

    Related Topics

    Task Automation

    Agent-powered tools that automate routine project tasks and workflows with intelligent prioritization, dependency management, and contextual assignment of work across teams.

    97 tools

    API Integration Platforms

    AI-powered platforms for building, testing, and managing APIs with intelligent documentation generation, automated testing, and performance optimization capabilities.

    132 tools

    Workflow Automation

    Agents designed to automate complex business and development workflows.

    278 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions