Skip to main content
The native SDKs are deliberately tiny. Each is a single file, standard-library only, no package-manager install needed. They cover the three things every integration does: create a hosted checkout, verify a webhook, and check a payment’s status.

Available SDKs

What you get

Each SDK exposes the same three methods:
  • create_checkout(amount, currency, label, network) returns a hosted-checkout URL.
  • verify_payment(token) polls the gateway for status.
  • verify_webhook(raw_body, signature_header, secret) checks an inbound webhook’s HMAC and timestamp.

Python example

When to use a native SDK

  • Your platform doesn’t have a dedicated adapter
  • You don’t want to add a dependency
  • You’re integrating from a serverless function with cold-start budget concerns
For platforms we already cover, the framework adapters, e-commerce modules, and no-code platforms save you the boilerplate.

See also