All Providers
πŸ€–

OpenAI Webhooks

AI & Data

OpenAI sends webhook events for fine-tuning job completions, batch API completions, and eval run results.

Webhook Events

4 event types

fine_tuning.job.succeeded

Fine-tuning job completed successfully

fine_tuning.job.failed

Fine-tuning job failed

batch.completed

Batch API request completed

eval.run.succeeded

Eval run completed

Signature Verification

Header
webhook-secret
Method

HMAC-SHA256 of raw body using webhook secret

View official docs

Sample Payload

fine_tuning.job.succeeded

application/json
{
  "id": "evt_abc123",
  "object": "event",
  "type": "fine_tuning.job.succeeded",
  "created_at": 1712000000,
  "data": {
    "id": "ftjob_abc123",
    "object": "fine_tuning.job",
    "model": "gpt-4o-mini-2024-07-18",
    "fine_tuned_model": "ft:gpt-4o-mini:acme:custom-v1:abc123",
    "status": "succeeded",
    "trained_tokens": 50000
  }
}

Send a Sample OpenAI Payload

Pick an event, enter your endpoint URL (or localhost), and fire a realistic OpenAI payload with one click β€” no OpenAI account needed.

Test Sender

Loading samples…

No signup

Capture & Inspect OpenAI Webhooks Live

Get a free public HTTPS endpoint below, point OpenAI at it, and watch events arrive in real time. Use the forwarding rule to relay them straight to your local server.

Live demo β€” no signup required

See it work in real time

Click below to get a live webhook URL instantly. Paste it anywhere β€” Stripe, GitHub, Postman β€” and watch events arrive right here.

Expires in 1 hour Β· No account needed

Forward OpenAI webhooks to localhost

  1. Click Create live endpoint above to get a public HTTPS URL
  2. Paste the URL into OpenAI's webhook settings
  3. In the Forwarding tab, add a rule: target = http://localhost:3000/webhooks/openai
  4. Fire a test event from OpenAI β€” it arrives in the inspector and hits your local handler simultaneously

Ready to test your OpenAI webhook handler?

Free HTTPS endpoint with forwarding, retry, and event replay. No install, no CLI, no deploy.

Create Free Account

More AI & Data Providers