Accept One-Time Crypto Payments
One-time payments let customers pay using crypto, similar to a standard checkout experience.
curl --request POST \
--url https://api.copperx.dev/api/v1/checkout/sessions \
--header 'Authorization: Bearer {API_KEY}' \
--header 'Content-Type: application/json' \
--data-raw '{
"successUrl": "https://example.com/success",
"cancelUrl": "https://example.com/cancel",
"lineItems": {
"data": [
{
"priceData": {
"currency": "usdc",
"unitAmount": "100000000",
"productData": {
"name": "Pro Plan",
"description": "One-time access"
}
}
}
]
}
}'Last updated