🌙 Appearance
🌙 Appearance
Get your first payment up and running in under 5 minutes:
curl -X POST https://app.obliqpay.com/api/v1/payment \
-H "Authorization: Bearer your-api-key" \
-H "Content-Type: application/json" \
-d '{
"amount": 100.00,
"currency": "USD",
"email": "customer@example.com",
"webhook": "https://your-site.com/webhook"
}'const response = await fetch("https://app.obliqpay.com/api/v1/payment", {
method: "POST",
headers: {
Authorization: "Bearer your-api-key",
"Content-Type": "application/json",
},
body: JSON.stringify({
amount: 100.0,
currency: "USD",
email: "customer@example.com",
webhook: "https://your-site.com/webhook",
}),
});import requests
response = requests.post(
'https://app.obliqpay.com/api/v1/payment',
headers={
'Authorization': 'Bearer your-api-key',
'Content-Type': 'application/json'
},
json={
'amount': 100.00,
'currency': 'USD',
'email': 'customer@example.com',
'webhook': 'https://your-site.com/webhook'
}
)