Available SDKs
| Language | What it covers | Source |
|---|---|---|
| Go | HTTP server integration with the standard library | native-go |
| PHP | Any PHP application without Composer | native-php |
| Python | Any Python web app without pip | native-python |
| Rust | Any Rust HTTP server (stdlib only, no crates) | native-rust |
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
See also
- Quickstart for the create-checkout flow end to end
- Outbound webhooks for the full event schema and HMAC scheme