curl
curl -X POST https://payments.silvatech.bz/api/payments/initialize \
-H 'Authorization: Bearer sk_test_xxx' \
-d '{"amount":"120.00","currency":"BZD"}'For developers
Initialize a checkout, receive webhook updates, reconcile statuses, and keep payment edge cases out of your product backlog.
Open API reference10-minute integration
curl -X POST https://payments.silvatech.bz/api/payments/initialize \
-H 'Authorization: Bearer sk_test_xxx' \
-d '{"amount":"120.00","currency":"BZD"}'payment = client.initialize_payment(
amount="120.00",
currency="BZD",
order_number="BZ-1001",
)const payment = await client.payments.initialize({
amount: "120.00",
currency: "BZD"
});$payment = $client->payments()->initialize([ 'amount' => '120.00', 'currency' => 'BZD', ]);
Sandbox story
Developer CTA
Silvatech Payments is intentionally plain to integrate: stable endpoints, explicit states, and operations notes for edge cases.
Start integrating