Crypto for high-risk

Collect payments for Peptides, CBD, Adult and more.
Set up in minutes. Get paid from anywhere.

Integrate this afternoon

A simple, elegant interface so you can start accepting crypto payments in minutes. It fits right into your code with SDKs for your favorite programming languages.

1import { Chama } from "@chama/sdk";
2
3const chama = new Chama(process.env.CHAMA_API_KEY);
4
5export async function POST(request: Request) {
6 const { amount, currency } = await request.json();
7
8 const payment = await chama.payments.create({
9 amount,
10 currency,
11 metadata: {
12 orderId: "order_123",
13 },
14 });
15
16 return Response.json(payment);
17}