Security proof
Client-side request preview with a verifiable SHA-256 payload hash and request ID.
Request ID—
Payload hash—
Endpointhttps://api.bijani.space/checkout/charge
StatusIdle
Last error—
Client request source
const payload = {
requestId, plan: "pro",
card: { last4 },
billing: { name, company, country }
};
const hash = await sha256(JSON.stringify(payload));
await fetch(endpoint, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(payload)
});