Developer starter kits

Instrument an existing workflow in an afternoon.

Four integration patterns — each showing the before state, the minimal code change, and what the proof-card output looks like. Node.js and Python snippets included.

Before and after, side by side

Every kit shows the manual process you have today and the Patchr-instrumented version — so you can see exactly what changes.

Node.js and Python

Copy-paste integration snippets in both languages using the Patchr SDK and the raw HTTP API.

Proof card output included

See the exact JSON shape your integration returns — evidence status, confidence, open questions, and a citable proof ref.

Live sandbox link per kit

Each kit links to the sandbox pre-loaded with an entity-complete request so you can run it immediately.

Before you start

You need one token and two env vars.

Every kit uses the same setup. Get a starter token from the developer page or the SDK, set two environment variables, and you're ready to run any kit.

Developer quickstart
# Install
npm install @patchr-core/sdk

# Set env vars
export PATCHR_API_BASE_URL="https://api.patchr.co"
export PATCHR_API_TOKEN="your_patchr_api_token"

# Verify
node -e "
  const { PatchrClient } = require('@patchr-core/sdk');
  PatchrClient.fromEnv().health().then(console.log);
"
# → { ok: true, version: '...' }

Python: pip install patchr-core — same env vars.

Want to see the trace before you code?

The workflow gallery has inspectable sample traces for every domain — payments, disputes, fulfillment, onboarding, and exception handling.

View gallery