openai-webhooks

Installation
SKILL.md

OpenAI Webhooks

When to Use This Skill

  • Setting up OpenAI webhook handlers for async operations
  • Debugging signature verification failures
  • Handling fine-tuning job completion events
  • Processing batch API completion notifications
  • Handling realtime API incoming calls

Essential Code (USE THIS)

Express Webhook Handler

const express = require('express');
const crypto = require('crypto');

const app = express();
Installs
2
First Seen
Mar 1, 2026
openai-webhooks — robinbg/webhook-skills