Laravel apps can take crypto with My Crypto Server through the REST API and signed webhooks. Create a charge from a controller, redirect to the hosted checkout, and confirm the payment in a webhook route, with funds settling straight to your own wallet.
REST API from a controller + a signed webhook route.
Integration
Push the app to Vercel, attach any Postgres database, add your Alchemy key, and point it at your wallet. You're live in about an hour.
POST to the charge endpoint for the order total, redirect to the hosted checkout, and add a webhook route that verifies the signature before marking the order paid.
On a confirmed payment, the server sends a signed webhook to your endpoint. Verify the signature, then mark the order paid and fulfil, idempotently.
Test with the live demo flow, then flip it on. Card options can stay exactly where they are; crypto simply runs alongside them at 0% fees.
No 2.9% + 30¢ per order. Crypto settles for the cost of gas, paid by the customer, so your integration keeps the full sale price.
Every confirmed payment fires an HMAC-SHA256 signed webhook with replay protection, so your app marks orders paid idempotently and never trusts an unverified event.
Payments derive from your own wallet and settle straight to you. There's no processor balance, payout schedule, or account anyone can freeze.
The customer picks their chain and coin at checkout; your code just creates a charge in USD. Native coins plus USDC, USDT, and DAI are all handled server-side.
The REST API is language-agnostic and easy to call from Laravel's HTTP client. The typed SDK is TypeScript; PHP integrates over plain HTTP.
Compute an HMAC-SHA256 over the raw request body with your webhook secret and compare it to the signature header, then check the timestamp to block replays.
Crypto runs as its own payment path since it's push-based rather than card auto-pull. You create a charge per order and confirm on the webhook.
$699 one-time with code MCSINTRO $999, full source, every v1 update included, 0% platform fees.
Try the live demo