Create payment requests
POST /api/developers/payments creates a request and returns a hosted funding link.
Create protected payment links, monitor the money state, and receive lifecycle webhooks - before you ever build your own trust ledger.
POST /api/developers/payments creates a request and returns a hosted funding link.
Every payment moves through explicit states: funded, held, approved, released, refunded, or disputed.
Subscribe to lifecycle webhooks and verify them with the signing secret shown once at key creation.
Request shape
You create the request. wlbr hosts the funding, trust, approval, and payout experience.
POST /api/developers/payments
Authorization: Bearer ck_live_...
{
"amount_cents": 125000,
"description": "Website deposit",
"success_url": "https://example.com/paid",
"cancel_url": "https://example.com/cancel"
}Sign in to create a scoped API key and webhook signing secret.