@siglume/direct-request-payment
Siglume Direct Request Payment (SDRP) lets an existing Express or FastAPI product add Siglume wallet checkout with a local sandbox, signed webhooks, and official database adapters. The merchant fixes the order, amount, and currency on its server; the buyer pays with a Siglume wallet; Siglume applies the correct pricing and settlement path from the payment amount.
Public SDRP GA scope: Standard Hosted Checkout, Micro Payment, Nano Payment, subscription approval, and scheduled autopay authorization/execution are public SDRP protocol/API/SDK surfaces for JPY/JPYC or USD/USDC on Polygon PoS when the relevant merchant and buyer readiness checks pass. Refund workflow, card payments, cross-chain payment, custom settlement wallets, and merchant internal support/accounting systems are outside SDRP.
Start Here
10-minute account-free sandbox: use the local sandbox first. It needs no Siglume merchant account, no live mandate, and no public HTTPS webhook while you are wiring your product route:
npx siglume-sdrp init express --target src/siglume npx siglume-sdrp sandbox --origin http://localhost:3000 --webhook-url http://localhost:3000/payments/webhooks/siglume npx siglume-check verify --sandboxPrepared merchant live verification: after merchant setup, mandate, Hosted Checkout enablement, and the live webhook URL are ready, switch to live credentials and run:
npx siglume-check preflight npx siglume-check verifyRun the sandbox before using live credentials.
Use
setupCheckout(...)/setup_checkout(...),siglume-check preflight, and the merchant readiness API before opening live Standard Hosted Checkout.Read the responsibility boundary before reviewing GA readiness. SDRP Standard Hosted Checkout is a non-custodial protocol and hosted wallet checkout interface under the published Terms and Direct Request Payment developer page; the merchant remains merchant of record.
Use public GitHub issues for documentation / SDK bugs only. Do not post request IDs, trace IDs, support references, buyer identifiers, wallet addresses, tokens, or transaction-specific data in a public issue. For payment investigation, use your private Siglume support channel or account contact.
Read the current public scope before promising Siglume-provided refund APIs, recurring lifecycle, or Micro / Nano settlement behavior to your own users.
Current Public Scope
SDRP currently settles JPYC / USDC on Polygon PoS only. The public SDK does not expose chain selection, cross-chain payment, multiple merchant settlement wallets, per-payment settlement-wallet override, or split / multi-wallet charging. Route each payment through the buyer's Siglume wallet and the merchant account's configured Siglume settlement wallet.
Standard Hosted Checkout for one-time JPY/JPYC or USD/USDC payments is the general human-shopper integration path when merchant readiness passes. Micro Payment and Nano Payment are automatic amount bands on the same SDRP payment surface and must be reconciled through the statement APIs because final settlement is aggregated. Subscription approval and scheduled autopay use the recurring challenge scheme and the named SDK methods documented in the API reference. The SDK does not provide a merchant refund API, refund state machine, refund receipt registry, or refund webhook. Refund policy, buyer support, and any refund transfer are handled by the merchant outside SDRP using the merchant's own lawful process. SDRP exposes the original payment identifiers and signed payment evidence so the merchant can reconcile its own order system. Refund policy, buyer support, refund transfer, and accounting are merchant responsibilities.
If you evaluated 0.5.0, 0.5.1, or 0.5.2, read
Migrating from the withdrawn refund preview.
Payment requirement creation must run in the authenticated buyer's Siglume context. Your merchant server must not use a merchant secret or API key to charge a customer wallet. The merchant server creates the signed challenge; the buyer-facing Siglume payment flow creates and pays the requirement.
DirectRequestPaymentMerchantClient requires the merchant's Siglume bearer
token for setup. DirectRequestPaymentClient requires the buyer's Siglume
bearer token for payment requirements and buyer statements, or the provider /
merchant user's Siglume bearer token for provider statements. Do not use a
Developer Portal cli_ API key with this package.
Documentation Map
- 10-Minute Standard Checkout Integration: Standard Hosted Checkout plumbing for Express/FastAPI when prerequisites are ready.
- Buyer Account and Wallet Onboarding: first-use Siglume account / wallet flow for human and agent buyers.
- SDRP Sandbox: local checkout, signed webhook, and Micro / Nano accounting inspection before live credentials.
- Merchant Quickstart: manual API overview and recurring challenge notes.
- Pricing and settlement: amount bands, seller-borne fees, and Micro / Nano threshold close rules.
- Responsibility Boundary: non-custodial protocol role, merchant-of-record duties, non-Siglume refund boundary, and GA review scope.
- API Reference: TypeScript/Python methods, CLI checks, webhook helpers, and statement APIs.
- Troubleshooting: Hosted Checkout readiness, support escalation, and safe buyer messages.
- API and SDK Stability: SemVer, API versioning, webhook compatibility, error-code compatibility, and deprecation.
- Status and Service Objectives: public status endpoint, severity levels, response targets, and support scope.
- Public SDRP GA Evidence Map: GA review scope, non-SDRP boundaries, and test-name mapping.
- SDRP vs x402: how SDRP relates to HTTP 402 and why it is not x402 wire-compatible.
Protocol Overview
Use this package when an external EC site, booking service, membership service, or paid API wants to accept Siglume wallet payments without taking custody of customer funds. The SDK creates and verifies one-time and recurring wallet payment authorizations; it does not hold customer funds or wallets. For Standard Hosted Checkout, Siglume is the non-custodial protocol provider and hosted checkout operator under the published Terms and Direct Request Payment developer page. The integrating business remains merchant of record, handles fulfillment, buyer support, taxes, prohibited-business screening, and refund policy/transfer execution outside SDRP.
SDRP is built around the HTTP 402 Payment Required lineage, but it is not wire-compatible with Coinbase's x402. See SDRP vs x402 for the detailed comparison.
Two Kinds of Buyer
SDRP serves two kinds of buyer, and you integrate each differently. In both cases the buyer pays from a Siglume wallet (JPYC for JPY, USDC for USD) — it is not a card payment — and your merchant SDK never authenticates the buyer.
Human web shopper → Standard Hosted Checkout. When a person clicks "Pay with Siglume" on your site, call
createCheckoutSession(...)and redirect them to the returnedcheckout_url. They sign into Siglume (passkey or email code — the login is the wallet), review the amount, approve once, and pay from their own wallet, then return to yoursuccess_url. This is the Siglume wallet hosted checkout path.AI agent / agent-to-agent (AtoA) → direct API / tools. An autonomous buyer agent pays through
DirectRequestPaymentClient(your app holds the buyer's Siglume JWT) or through the Siglume marketplace toolmarket_confirm_direct_payment_and_execute(MCP).Prerequisite (important): agent payment assumes the buyer agent is already connected to Siglume before the payment. An AI client (Claude / ChatGPT / Cursor, …) connects through the Siglume MCP server (OAuth authorization, with a consent screen); a custom app holds the buyer's Siglume bearer token (JWT). Either way a Siglume authentication context must be established before paying — the merchant SDK does not log the buyer in. Unattended runs are bounded by Siglume's approval gates / spending budgets (per-run / daily / monthly auto-pay budgets), not by the merchant.
Honest framing: the part that integrates quickly is the merchant plumbing (challenge or checkout session + webhook). Human web payment still requires the shopper to have — or create — a Siglume wallet and pay from it; it is not a card-style "instant" checkout for first-time buyers. See Buyer Account and Wallet Onboarding for the recommended first-use copy and the agent/MCP account-required response shape.
Fast Path
Use 10-Minute Standard Checkout Integration to add Standard Hosted Checkout plumbing to an existing Express or FastAPI product when merchant credentials, active billing mandate, HTTPS webhook URL, login/session middleware, a real order database, sandbox verification, accepted terms, and live readiness already exist. The path is CLI-first:
npm install @siglume/direct-request-payment
npx siglume-sdrp init express --target src/siglume
# mount the routes, start your app, then:
npx siglume-sdrp sandbox --webhook-url http://localhost:3000/payments/webhooks/siglume
npx siglume-check verify --sandbox
npx siglume-check verifyor:
pip install siglume-direct-request-payment
siglume-sdrp init fastapi --target app/siglume
# mount the routes, start your app, then use the npm sandbox for local checkout.
# FastAPI sandbox verification currently requires Node.js/npm:
npx siglume-sdrp sandbox --webhook-url http://localhost:3000/payments/webhooks/siglume
siglume-check verify --sandboxThe sandbox command starts a local Siglume-compatible API that creates fake
checkout sessions and sends signed webhooks to your product. It never charges a
wallet; see SDRP Sandbox. siglume-check preflight
checks account, billing, origin, webhook subscription metadata, and Hosted
Checkout availability by creating an unpaid expiring checkout session before
route mounting. siglume-check verify additionally requires a signed webhook
test delivery, so run it only after your webhook route is mounted and your app
is running.
The Express templates include SQL/ORM adapters plus DynamoDB, MongoDB, and
Firestore order stores. The FastAPI templates include both sync Session and
async AsyncSession SQLAlchemy adapters. The sandbox also exposes metered
summary endpoints so you can verify Micro / Nano seller-borne fee fields before
using live credentials.
Before implementation, confirm Hosted Checkout readiness in Troubleshooting. For state handling, read Payment lifecycle before fulfilling orders.
Who Is Who
| Term | Meaning for public integrations |
|---|---|
| Buyer | The Siglume wallet user who pays. The merchant SDK does not log this user in. |
| Merchant | The external product or store that starts checkout, owns the order, and verifies webhooks. |
| Provider | The revenue recipient in Micro / Nano statements. In a simple EC integration this is usually the same business as the merchant. |
| Publisher / listing owner | Marketplace-facing owner of a listing or capability. Most Hosted Checkout merchants do not need to handle this term directly. |
| Payee | Internal settlement-grouping language. Public integration guides avoid this term unless a statement API field includes it. |
Use-Case Fit
| Use case | Recommended path | 10-minute integration path? | Production work still required |
|---|---|---|---|
| EC one-time Standard payment | Hosted Checkout | Yes, with siglume-sdrp init, sandbox, and siglume-check verify when prerequisites are ready |
Product DB adapter, order-owner authorization, merchant-owned refund/support policy, monitoring |
| Game consumables | Hosted Checkout or agent/API | Conditional | Idempotent entitlement grants, disconnect recovery, Micro / Nano settlement reconciliation and past-due handling |
| Paid API / AtoA | Direct API or Siglume marketplace tool | Conditional | Request idempotency, buyer auth context, reconciliation |
| SaaS subscription | Recurring challenge plus raw API | No | Renewal, cancellation, failed renewal, plan-change lifecycle |
| Scheduled autopay | Recurring challenge plus schedule token | No | Scheduler, token custody, budget failure handling |
Hosted Checkout (Human Web Shoppers)
Standard Hosted Checkout is available when the merchant readiness checks pass:
merchant registration, settlement wallet, active billing mandate, HTTPS webhook,
terms acceptance, sandbox confirmation, merchant responsibility attestation, and
live mode. Separate merchant underwriting is not a Standard Hosted Checkout
protocol precondition and must not be reported as a Hosted Checkout SDK
readiness blocker.
HostedCheckoutNotAvailableError means the platform Hosted Checkout switch or
route is unavailable. If readiness is incomplete, the API returns
HOSTED_CHECKOUT_READINESS_REQUIRED with the missing checks. Keep the signed
direct_payment.confirmed webhook as the durable signal, and inspect its
settlement machine fields before marking any order paid. Run preflight before
route mounting and verify after your webhook is live; see
Hosted Checkout readiness.
Hosted Checkout is a Siglume-hosted page that turns a "Pay with Siglume" button
into a completed wallet payment, then returns the shopper to your store. It
orchestrates the same rails as the agent flow — there is no new money movement.
Fulfillment still starts from the signed direct_payment.confirmed webhook, but
you must inspect the settlement machine fields before deciding whether the event
means Standard settled payment, Micro / Nano accepted usage, or aggregated
Micro / Nano settlement.
The snippets below show the raw Hosted Checkout API shape. In production, prefer
the generated checkout route and database adapter, or implement the same durable
checkout-attempt pattern yourself: claim one active attempt, call
createCheckoutSession(...), then persist challenge_hash,
checkout_session_id, and checkout_url before redirecting. If your process
stops after session creation but before that mapping is saved, the later signed
webhook cannot be matched safely to the order.
import { DirectRequestPaymentMerchantClient } from "@siglume/direct-request-payment";
const merchant = new DirectRequestPaymentMerchantClient({ auth_token: process.env.SIGLUME_MERCHANT_AUTH_TOKEN });
// 1. Register the return-URL origins once (open-redirect defense). The origin of
// your webhook_callback_url is auto-allowed in addition to these.
await merchant.setupMerchant({
merchant: "your_merchant_key",
webhook_callback_url: "https://api.your-shop.com/webhooks/siglume",
checkout_allowed_origins: ["https://www.your-shop.com"],
standard_terms_accepted: true,
merchant_responsibility_attested: true,
responsibility_attestation_version: "sdrp_standard_hosted_checkout_responsibility_v1",
});
// 2. Per order: create a session and redirect the shopper to checkout_url.
const session = await merchant.createCheckoutSession({
merchant: "your_merchant_key",
amount_minor: 1200, // server-fixed; the browser cannot change it
currency: "JPY",
nonce: `${order.id}-attempt_${paymentAttempt.number}`,
success_url: "https://www.your-shop.com/thanks",
cancel_url: "https://www.your-shop.com/cart",
metadata: { order_id: order.id },
});
redirect(session.checkout_url); // -> https://siglume.com/pay/<session_id>
// 3. Handle the signed direct_payment.confirmed webhook. Use
// classifyDirectPaymentConfirmation(event). Fulfill Standard only for
// standard_settled. Do not fulfill metered_usage_accepted unless you have
// explicitly enabled Micro / Nano settlement reconciliation.
// Poll merchant.getCheckoutSession(session.session_id) if you also want to
// show status in your own UI.
import os
from siglume_direct_request_payment import DirectRequestPaymentMerchantClient
merchant = DirectRequestPaymentMerchantClient(auth_token=os.environ["SIGLUME_MERCHANT_AUTH_TOKEN"])
# 1. Register the return-URL origins once (open-redirect defense). The origin of
# your webhook_callback_url is auto-allowed in addition to these.
merchant.setup_merchant(
merchant="your_merchant_key",
webhook_callback_url="https://api.your-shop.com/webhooks/siglume",
checkout_allowed_origins=["https://www.your-shop.com"],
standard_terms_accepted=True,
merchant_responsibility_attested=True,
responsibility_attestation_version="sdrp_standard_hosted_checkout_responsibility_v1",
)
# 2. Per order: create a session and redirect the shopper to checkout_url.
session = merchant.create_checkout_session(
merchant="your_merchant_key",
amount_minor=1200, # server-fixed; the browser cannot change it
currency="JPY",
nonce=f"{order['id']}-attempt_{payment_attempt['number']}",
success_url="https://www.your-shop.com/thanks",
cancel_url="https://www.your-shop.com/cart",
metadata={"order_id": order["id"]},
)
redirect(session["checkout_url"]) # -> https://siglume.com/pay/<session_id>
# 3. Handle the signed direct_payment.confirmed webhook. Use
# classify_direct_payment_confirmation(event). Fulfill Standard only for
# standard_settled. Do not fulfill metered_usage_accepted unless you have
# explicitly enabled Micro / Nano settlement reconciliation.
# Poll merchant.get_checkout_session(session["session_id"]) if you also want
# to show status in your own UI.Siglume fixes the amount, currency, challenge, and return URLs server-side at
session creation, so the browser cannot tamper with the price or the redirect
target. The shopper's Siglume credentials are never shared with your store.
Create paymentAttempt.number in your own order DB. Reuse the same nonce for
network retries of that logical attempt; create a new attempt number only after
the prior checkout attempt expired, was cancelled, or failed.
Who does what.
- Merchant — confirms the order; signs the challenge (agent flow) or creates a checkout session (web flow); verifies the webhook signature; fulfills idempotently. Never sees the buyer's Siglume credentials.
- Siglume — provides the wallet and login, executes the wallet payment, applies the fee, settles on-chain, and routes Micro / Nano automatically by amount band.
- Buyer — needs a Siglume wallet funded in JPYC / USDC. Not a card payment.
Optional status poll. The webhook is the source of truth for fulfillment, but
you can read a session's status (open / authenticated / paid / expired /
cancelled / failed) to drive your own UI:
const status = (await merchant.getCheckoutSession(session.session_id)).status;status = merchant.get_checkout_session(session["session_id"])["status"]Amount-Based Pricing and Settlement
Pricing has one structure: you choose a Standard Payment plan once during setup, and after that the applied fee and the settlement timing follow the payment amount automatically. There is nothing else to choose.
- Standard Payment — most payments. Your selected plan's percentage fee, settled on-chain immediately after each payment confirms.
- Micro Payment — small payments, applied automatically by amount. A flat per-SDRP-Tx protocol fee, settled weekly or earlier when the same buyer / provider / token / pricing band reaches JPY 10,000 / USD 100.00.
- Nano Payment — very small payments, applied automatically by amount. A flat per-SDRP-Tx protocol fee, settled monthly or earlier when the same buyer / provider / token / pricing band reaches JPY 10,000 / USD 100.00.
Here, Tx means one accepted SDRP payment, not the later on-chain settlement
transaction. Micro / Nano settlement batches are aggregated on-chain after the
weekly or monthly close, or earlier when the fixed amount threshold is reached.
Micro Payment and Nano Payment are not separate products you opt into; they are
amount bands Siglume applies on your behalf. Payment initiation is the same
across amount bands. Fulfillment, revenue recognition, reconciliation, past-due
handling, and terminal write-off handling differ for Micro / Nano. The full fee
table and the exact weekly / monthly settlement schedule plus early threshold
settlement rule are in
docs/pricing.md.
Provider revenue in the Micro and Nano bands is not settled revenue until the
aggregated on-chain settlement succeeds. Siglume keeps outstanding failed
settlements for retry under the published policy, but does not advance or
guarantee provider revenue before settlement succeeds. Merchant setup and the
billing mandate terms assume the merchant accepts this Micro / Nano delayed
aggregated settlement model whenever they offer amounts in these bands. If a
product cannot fulfill before provider revenue is settled, keep the price in the
Standard band; in practice, do not offer JPY 500-and-under or USD 3-and-under
items for that product.
Self-service setup records this acceptance in
merchant_account.metadata_jsonb.metered_risk_acceptance, including
terms_version, accepted_at, principal_user_id, receipt_id, and fixed
market thresholds JPY: 10000 / USD: 10000.
Micro / Nano budget checks reserve spending capacity only; they do not lock,
escrow, or guarantee the buyer's wallet balance, allowance, or settlement funds.
Sub-minor-unit Nano fees are accumulated with decimal precision, but they are
seller-borne: buyer_debit_minor = provider_gross_amount_minor, and the fixed
Micro / Nano protocol fee is deducted from provider receivable. If
rounding_delta_minor appears in a statement schema, treat it as a compatibility
or internal platform accounting field; it is not added to buyer debit and is not
provider revenue. Treat Micro / Nano minor amounts as decimal strings and use a
decimal library or Decimal for accounting.
For operational reconciliation, expected revenue, settled revenue, retry state,
and CSV exports, see
docs/metered-statements.md.
What This SDK Covers
- merchant self-service setup with a Siglume merchant JWT
- challenge secret creation and rotation
- merchant billing mandate preparation
- Hosted Checkout session creation and status reads
- webhook subscription creation
siglume-check preflight/siglume-check verify- local sandbox checkout and signed webhook delivery
- generated Express and FastAPI checkout/webhook routes
- SQL/ORM, DynamoDB, MongoDB, Firestore, and SQLAlchemy order-store adapters
- merchant-signed payment challenges
- buyer-authenticated payment requirement creation
- prepared wallet transaction execution payloads
- payment requirement verification
- authenticated TypeScript JSON requests and named Python helpers for Micro / Nano statement APIs
- signed webhook verification
It does not custody funds, manage customer wallets, become merchant of record, or underwrite the merchant business. Merchant setup runs through Siglume APIs with the merchant's Siglume JWT; buyer payment creation runs with the buyer's Siglume JWT.
Install
npm install @siglume/direct-request-paymentpip install siglume-direct-request-paymentNode.js 20.19 or later, or Node.js 22.12 or later, is required for the TypeScript SDK and generated Express templates. Python 3.11 or later is required for the Python SDK.
Pricing
Pricing has one structure: choose a Standard Payment plan, then Siglume applies the fee for each payment by amount. Micro / Nano are automatic amount bands, not extra setup choices.
Both launch settlement currencies are first-class where enabled: JPY settled in JPYC, and USD settled in USDC. Some accounts may require agreed USD/USDC terms before USD is enabled. A merchant settles in one currency, chosen at onboarding. The settlement fee percentage is identical in both currencies; only the flat amounts differ.
| Public one-time payment amount | Applied automatically | What you select | Fee | Settlement |
|---|---|---|---|---|
| JPY 501+ / USD 3.01+ | Standard Payment | Select one Standard plan: Launch, Starter, Growth, or Pro | Launch: JPY 0 / USD 0 monthly, 1.8%; Starter: JPY 980 / USD 6 monthly, 1.0%; Growth: JPY 2,980 / USD 18 monthly, 0.7%; Pro: JPY 9,800 / USD 60 monthly, 0.5%. Minimum JPY 30 / USD 0.20 per payment. | Settled on-chain immediately after the payment confirms |
| JPY 50-500 / USD 0.31-3.00 | Micro Payment | Applied automatically by amount | JPY 2 / USD 0.01 per SDRP Tx | Closes weekly, or earlier when provider gross reaches JPY 10,000 / USD 100.00. See Settlement schedule. |
| JPY 1-49 / USD 0.01-0.30 | Nano Payment | Applied automatically by amount | JPY 0.2 / USD 0.001 per SDRP Tx | Closes monthly, or earlier when provider gross reaches JPY 10,000 / USD 100.00. See Settlement schedule. |
In this table, Tx means one accepted SDRP payment, not an on-chain settlement
transaction.
A merchant billing mandate is required before accepting payments, even on the
Launch plan. The current public API chooses the payment band from
amount_minor; JPY 500-and-under / USD 3-and-under payments are routed to
Micro / Nano delayed aggregated settlement. Accepting the SDRP merchant terms
means accepting automatic Micro / Nano delayed aggregated settlement for those
low-price bands. If immediate on-chain settlement is a hard requirement, price
the item in the Standard band; in practice, do not offer JPY 500-and-under or
USD 3-and-under items for that product. Public Direct Payment / Hosted Checkout
amount_minor is a positive integer in minor currency units, so public one-time
Nano amounts start at JPY 1 or USD 0.01. For Standard Payment, fee_bps
returned on a payment requirement is the authoritative fee rate for that payment
in the merchant's settlement currency. For Micro / Nano, the statement APIs
expose protocol_fee_minor, gross_buyer_debit_minor, buyer_debit_minor, and
rounding_delta_minor. provider_gross_amount_minor is the canonical provider
gross field; provider_usage_amount_minor and gross_buyer_debit_minor are
legacy aliases of the same amount.
All SDRP payment fees are seller-borne. Standard Payment fees are deducted from
the merchant settlement amount. Micro / Nano protocol fees are deducted from
provider receivable at aggregated settlement and are not added to the buyer
debit.
The full fee table, the weekly / monthly settlement schedule, and the JPY
10,000 / USD 100.00 early settlement threshold live in
docs/pricing.md. Statement APIs for "how much was used,
when will it close, when can it debit, and what is settled" are documented in
docs/metered-statements.md.
Merchant Setup: One SDK Call
Run this once from the merchant server or an integration agent with the merchant's Siglume JWT. It reserves the merchant key, creates the challenge secret, prepares the billing mandate, and creates the webhook subscription.
import { DirectRequestPaymentMerchantClient } from "@siglume/direct-request-payment";
const merchant = new DirectRequestPaymentMerchantClient({
auth_token: process.env.SIGLUME_MERCHANT_AUTH_TOKEN!,
});
const setup = await merchant.setupCheckout({
merchant: "example_merchant",
display_name: "Example Merchant",
billing_plan: "launch",
billing_currency: "JPY",
webhook_callback_url: "https://merchant.example/siglume/webhook",
max_amount_minor: 100000,
standard_terms_accepted: true,
merchant_responsibility_attested: true,
responsibility_attestation_version: "sdrp_standard_hosted_checkout_responsibility_v1",
});
// setup.env holds the merchant key plus the challenge and webhook secrets:
// SIGLUME_DIRECT_PAYMENT_MERCHANT (not secret)
// SIGLUME_DIRECT_PAYMENT_CHALLENGE_SECRET (secret)
// SIGLUME_WEBHOOK_SECRET (secret)
// Write these to your server-side secret store. Do NOT log the secret values.
console.log(`Configured merchant: ${setup.env.SIGLUME_DIRECT_PAYMENT_MERCHANT}`);import os
from siglume_direct_request_payment import DirectRequestPaymentMerchantClient
merchant = DirectRequestPaymentMerchantClient(
auth_token=os.environ["SIGLUME_MERCHANT_AUTH_TOKEN"],
)
setup = merchant.setup_checkout(
merchant="example_merchant",
display_name="Example Merchant",
billing_plan="launch",
billing_currency="JPY",
webhook_callback_url="https://merchant.example/siglume/webhook",
max_amount_minor=100000,
standard_terms_accepted=True,
merchant_responsibility_attested=True,
responsibility_attestation_version="sdrp_standard_hosted_checkout_responsibility_v1",
)
# setup["env"] holds the merchant key plus the challenge and webhook secrets.
# Persist them to your server-side secret store; do not log the secret values.
print("Configured merchant:", setup["env"]["SIGLUME_DIRECT_PAYMENT_MERCHANT"])Store returned secrets on the merchant server. challenge_secret and
signing_secret are returned only when they are created or rotated. If a billing
mandate response requires wallet approval, complete that Siglume wallet step
before accepting production payments.
Merchant Server: Create a Challenge
import { createDirectRequestPaymentChallenge } from "@siglume/direct-request-payment";
const challenge = await createDirectRequestPaymentChallenge({
merchant: "example_merchant",
amount_minor: 1200,
currency: "JPY",
secret: process.env.SIGLUME_DIRECT_PAYMENT_CHALLENGE_SECRET!,
nonce: "order_123-attempt_1",
});
// Return only challenge.challenge to the buyer-facing checkout.
// Never return the challenge secret to the browser.
console.log(challenge.challenge);import os
from siglume_direct_request_payment import create_direct_request_payment_challenge
challenge = create_direct_request_payment_challenge(
merchant="example_merchant",
amount_minor=1200,
currency="JPY",
secret=os.environ["SIGLUME_DIRECT_PAYMENT_CHALLENGE_SECRET"],
nonce="order_123-attempt_1",
)
print(challenge["challenge"])The signed challenge binds:
- merchant key
- amount in minor units
- currency
- nonce
Changing any of those values invalidates the challenge.
The nonce must not contain : because the current platform challenge format is
scheme:nonce:signature.
Buyer Payment Flow
Use DirectRequestPaymentClient here with the authenticated buyer's Siglume
bearer token. SIGLUME_AUTH_TOKEN may be used in server-side payment-confirmation
helpers; SIGLUME_API_KEY and Developer Portal cli_ keys are not accepted.
import { DirectRequestPaymentClient } from "@siglume/direct-request-payment";
const siglume = new DirectRequestPaymentClient({
auth_token: buyerSiglumeBearerToken,
});
const requirement = await siglume.createPaymentRequirement({
merchant: "example_merchant",
amount_minor: 1200,
currency: "JPY",
challenge: challengeFromMerchantServer,
});
if (requirement.approve_transaction_request) {
await siglume.executeAllowanceTransaction(requirement, { await_finality: true });
}
const payment = await siglume.executePaymentTransaction(requirement, {
await_finality: true,
});
const receiptId = String(payment.receipt?.receipt_id ?? "");
const verified = await siglume.verifyPaymentRequirement(requirement.requirement_id, {
receipt_id: receiptId,
await_finality: false,
});
console.log(verified.status);from siglume_direct_request_payment import DirectRequestPaymentClient
siglume = DirectRequestPaymentClient(auth_token=buyer_siglume_bearer_token)
requirement = siglume.create_payment_requirement(
merchant="example_merchant",
amount_minor=1200,
currency="JPY",
challenge=challenge_from_merchant_server,
)
if requirement.get("approve_transaction_request"):
siglume.execute_allowance_transaction(requirement, await_finality=True)
payment = siglume.execute_payment_transaction(requirement, await_finality=True)
receipt_id = str((payment.get("receipt") or {}).get("receipt_id") or "")
verified = siglume.verify_payment_requirement(
requirement["requirement_id"],
receipt_id=receipt_id,
await_finality=False,
)
print(verified["status"])Recurring Payments: Subscription and Scheduled Autopay
Beyond one-time checkout, a buyer can authorize recurring payments. The merchant approves the price and recurring product tag ONCE by signing a recurring challenge (a distinct scheme, so one-time challenges and recurring approvals can never be replayed as each other); after that, recurring charges are challenge-free by design. Subscriptions are bounded by the buyer's mandate; scheduled autopay is bounded by the buyer's per-run, daily, and monthly auto-pay budget.
Current SDK scope: recurring support covers challenge construction, challenge verification, and webhook helpers. Subscription/schedule lifecycle creation, renewal management, cancellation UI, plan changes, and failed-renewal recovery are not fully wrapped by high-level SDK methods yet; use the documented raw Siglume API paths and your own operations workflow for those parts.
- Subscription (
cadence: "monthly"): Siglume charges the buyer's wallet monthly and pays your merchant wallet automatically. First month is charged at setup. The buyer can cancel from their Siglume wallet at any time. - Scheduled autopay (
cadence: "daily"):dailyis the approval tag for merchant-triggered scheduled autopay, not a run-count limiter. The buyer authorizes the per-run amount and budget envelope, then hands you aschedule_token; YOUR scheduler triggers each occurrence with that token.
import { createDirectRequestPaymentRecurringChallenge } from "@siglume/direct-request-payment";
// Merchant server: approve a JPY 980 monthly subscription once.
const recurring = await createDirectRequestPaymentRecurringChallenge({
merchant: "example_merchant",
amount_minor: 980,
currency: "JPY",
cadence: "monthly",
secret: process.env.SIGLUME_DIRECT_PAYMENT_CHALLENGE_SECRET!,
nonce: "subscription_setup_4711",
});
// Hand recurring.challenge to the buyer-facing page. The buyer creates the
// subscription with their Siglume token:
// POST /v1/sdrp/direct-payments/subscriptions
// { merchant, amount_minor, currency, cadence: "monthly", challenge }
// For scheduled autopay, the buyer instead creates a scheduled auto-pay
// authorization and hands you the schedule_token; your scheduler triggers
// each occurrence with that token.import os
from siglume_direct_request_payment import create_direct_request_payment_recurring_challenge
# Merchant server: approve a JPY 980 monthly subscription once.
recurring = create_direct_request_payment_recurring_challenge(
merchant="example_merchant",
amount_minor=980,
currency="JPY",
cadence="monthly",
secret=os.environ["SIGLUME_DIRECT_PAYMENT_CHALLENGE_SECRET"],
nonce="subscription_setup_4711",
)
# Hand recurring["challenge"] to the buyer-facing page, as in the TS example.
print(recurring["challenge"])Each recurring challenge is single-use: it authorizes exactly one subscription or schedule, bound to the first buyer who redeems it. Issue a fresh challenge per setup. The platform fee on recurring charges is your plan's payment fee (with the per-payment minimum), frozen at setup.
Merchant-facing webhook events: subscription.created, subscription.renewed
(each monthly charge), payment.failed (renewal failure, with will_retry /
final_failure flags), subscription.cancelled, and — for each scheduled
autopay occurrence — the usual direct_payment.confirmed.
Webhooks
Your merchant system should treat Siglume webhooks as the durable delivery
signal. Always verify the signature against the raw request body before trusting
the payload. Create a marketplace webhook subscription with
POST /v1/market/webhooks/subscriptions; the response returns the whsec_
signing secret once.
import {
classifyDirectPaymentConfirmation,
verifyDirectRequestPaymentWebhook,
} from "@siglume/direct-request-payment";
const { event } = await verifyDirectRequestPaymentWebhook(
process.env.SIGLUME_WEBHOOK_SECRET!,
rawRequestBody,
request.headers["siglume-signature"],
);
if (event.type === "direct_payment.confirmed") {
const confirmation = classifyDirectPaymentConfirmation(event);
if (confirmation.kind === "metered_batch_settled") {
// Reconcile settled Micro / Nano batches by settlement_batch_id /
// usage_event_digest; these events do not carry an order challenge hash.
} else if (confirmation.kind === "standard_settled") {
// Mark the order paid once if event.data.challenge_hash/order mapping matches.
} else if (confirmation.kind === "metered_usage_accepted") {
// Default Standard-only integrations should not fulfill this.
// Enable Micro / Nano only with settlement reconciliation and past-due handling.
} else {
// Route confirmation.reason to manual review. Do not mark paid or fulfilled.
}
}import os
from siglume_direct_request_payment import (
classify_direct_payment_confirmation,
verify_direct_request_payment_webhook,
)
verified = verify_direct_request_payment_webhook(
os.environ["SIGLUME_WEBHOOK_SECRET"],
raw_request_body,
siglume_signature_header,
)
if verified["event"]["type"] == "direct_payment.confirmed":
confirmation = classify_direct_payment_confirmation(verified["event"])
if confirmation["kind"] == "metered_batch_settled":
# Reconcile settled Micro / Nano batches by settlement_batch_id /
# usage_event_digest; these events do not carry an order challenge hash.
pass
elif confirmation["kind"] == "standard_settled":
# Mark the order paid once if event.data.challenge_hash/order mapping matches.
pass
elif confirmation["kind"] == "metered_usage_accepted":
# Default Standard-only integrations should not fulfill this.
# Enable Micro / Nano only with settlement reconciliation and past-due handling.
pass
else:
# Route confirmation["reason"] to manual review. Do not mark paid or fulfilled.
passNew direct_payment.confirmed payloads include pricing_band,
settlement_cadence, finality, protocol_fee_minor, settlement_status,
settlement_batch_id, chain_receipt_id, usage_event_digest, settled_at,
and when available request_hash_v2. Use
classifyDirectPaymentConfirmation(event) /
classify_direct_payment_confirmation(event) or the same machine-field checks
instead of inferring settlement semantics from the event name alone. Do not mark
an order paid from the event type alone.
Security Rules
- Keep the challenge secret on the merchant server only.
- Keep merchant order amount and currency server-authored.
- Use one nonce per order payment attempt.
- Store
challenge_hashwith the order and reject mismatches. - Make order fulfillment idempotent by
requirement_idand order id. - Verify webhook signatures against the raw body.
- Do not use a merchant token to charge a customer wallet.
- Do not treat Direct Request Payment as stored value, prepaid points, escrow, or a platform balance.
Read docs/security.md before going live. Use docs/troubleshooting.md for operational error handling and support escalation.
Go-Live Checklist
- Run
setupCheckoutwith the merchant Siglume JWT. - Complete the merchant billing mandate wallet approval if required.
- Store
SIGLUME_DIRECT_PAYMENT_CHALLENGE_SECRETonly on the merchant server. - Store the returned
SIGLUME_WEBHOOK_SECRETonly on the merchant server. - Persist
challenge_hash,requirement_id, and fulfillment state per order. - Fulfill orders only from verified webhook data, with idempotency, after
checking
pricing_band,settlement_cadence,finality, andsettlement_status. - Treat
fee_bpsreturned by Siglume as the Standard Payment runtime fee source of truth; use statement API amount fields for Micro / Nano.
Compatibility Notes
- The Direct Request Payment HTTP endpoints live under
/v1/sdrp/direct-payments/...; the SDK targets them for you. - The platform tags these payments with the internal mode value
external_402, which reflects SDRP's HTTP 402 Payment Required lineage (it is not x402-wire-compatible — see "Relationship to HTTP 402"). The merchant registry may also still expose the legacy billing-plan keyfreefor the Launch tier. The SDK sets and reads these values for you;external_402is an internal mode identifier, not a public product name.
Documentation
- Merchant quickstart
- 10-minute product integration
- Payment lifecycle
- Troubleshooting
- API reference
- Pricing
- Micro / Nano statements and notices
- Security guide
- Merchant setup example
- Express checkout example
- Hosted Checkout TypeScript starter
- Hosted Checkout Python starter
- Japanese launch announcement draft
- Changelog
License
MIT