fastspring-webhooks

A guide for connecting an application to FastSpring, an online payments and subscriptions service, through webhook notifications. It explains how to verify signed requests and process groups of events.

In plain words
What is it for?
Use it for completed orders, activated subscriptions, completed subscription charges, and cancelled subscriptions.
Why use it?
It helps ensure payment notifications are genuine and prevents errors when one request contains several events.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hookdeck/webhook-skills/fastspring-webhooks
Any agent
npx skills add hookdeck/webhook-skills --skill fastspring-webhooks
Clone the repo
git clone --depth 1 https://github.com/hookdeck/webhook-skills

Made for: Claude Code, Codex.

Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,550 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 84% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00053 $0.01550
Opus 5 $0.00026 $0.00775
Sonnet 5 $0.00011 $0.00310
Haiku 4.5 $0.00005 $0.00155

Measured 3d ago against content hash 5b4f7877476b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

fastspring-webhooks scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (examples/express/src/index.js, examples/express/test/webhook.test.js, examples/fastapi/main.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

84% identical to adyen-webhooks — 170 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/fastspring-webhooks/SKILL.md · 141 lines

How it starts

The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.

FastSpring Webhooks

When to Use This Skill

  • Setting up FastSpring webhook handlers
  • How do I verify FastSpring webhook signatures?
  • Why is my X-FS-Signature verification failing?
  • Handling order.completed, subscription.activated, or subscription.charge.completed events
  • Iterating the batched events array FastSpring delivers in each POST

Verification (core)

FastSpring signs the exact raw request body with HMAC-SHA256 keyed on your per-webhook HMAC SHA256 Secret, base64-encodes the digest, and sends it in the X-FS-Signature header. Pass the raw body (do not parse/re-serialize first), recompute, and compare timing-safe. Each POST batches multiple events in an events array — verify the signature once against the whole body, then iterate.

Note: Signing is only active when the HMAC secret is set on the webhook. If no secret is configured, no X-FS-Signature header is sent.

Node:

const crypto = require('crypto');

function verify(rawBody, signatureHeader, secret) {
  if (!signatureHeader) return false;
  const expected = crypto.createHmac('sha256', secret).update(rawBody).digest('base64');
  try {
    return crypto.timingSafeEqual(Buffer.from(signatureHeader), Buffer.from(expected));
  } catch {
    return false;
  }
}

Python:

import hmac, hashlib, base64

def verify(raw_body: bytes, signature_header: str, secret: str) -> bool:
    if not signature_header:
        return False
    expected = base64.b64encode(
        hmac.new(secret.encode(), raw_body, hashlib.sha256).digest()
    ).decode()
    return hmac.compare_digest(signature_header, expected)

After verifying, iterate payload.events and dispatch on each event.type. Dedupe on event.id — automatic retries reuse the same id (manual retries get new ids). FastSpring auto-retries over HTTPS until your endpoint returns HTTP 200.

For complete handlers with route wiring, batch iteration, event dispatch, and tests, see:

Read the full file on GitHub · 141 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 141 lines · 53 tokens per session scan A 5b4f7877476b

Subscribe to this mod's changes

fastspring-webhooks is a skill published in the GitHub repository hookdeck/webhook-skills (84 stars, last pushed 6d ago), licensed MIT. It adds 53 tokens to every session and 1,550 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 84% identical to adyen-webhooks, differing in 170 lines, and is treated as a copy.

Related

Other skills, from other repositories

domain-hunter

Search domains, compare prices, find promo codes, get purchase recommendations. Use when user wants to buy a domain, check domain prices, find domain deals, compare registrars, or search for .ai/.com domains.

ReScienceLab/opc-skills · 48 tokens

memstack-content-product-description

Use this skill when the user says 'product description', 'product listing', 'product copy', 'Amazon listing', 'Shopify listing', 'e-commerce copy', or needs conversion-optimized product descriptions with benefit-driven headlines and platform-specific SEO. Do NOT use for pricing strategy or sales funnels.

cwinvestments/memstack · 65 tokens

form-cro

When the user wants to optimize any form that is NOT signup/registration — lead capture, contact, demo request, application, survey, or checkout forms; "form friction," "form completion rate," "form abandonment," "too many fields," "nobody fills out our form." For signup/registration forms, see signup-flow-cro. For…

rajitsaha/100xprism · 84 tokens

frappe-payments

Frappe Payments and ERPNext payment workflow guidance for payment gateways, payment requests, subscriptions, invoices, reconciliation, webhooks, and secure checkout flows. Use when work touches payments in Frappe or ERPNext.

Dkm0315/frappe-agent · 49 tokens

wiki

Rebuild a flow-first project wiki using the mimirs wiki MCP tool. Use when the user asks to generate, rebuild, refresh, or write the wiki for a codebase.

TheWinci/mimirs · 38 tokens

scout

Research the web for solutions, competitors, alternatives, or prior art for a decision facing this project — then store the findings in project memory so they survive the session. Use when choosing a library or approach, comparing tools, checking what others do, or evaluating whether to build vs adopt.

TheWinci/mimirs · 60 tokens