curl --location --request POST '/api/v1/checkout-sessions' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 0.01,
"currency": "string",
"description": "string",
"customerName": "string",
"customerEmail": "user@example.com",
"expiresIn": 1800,
"paymentTolerance": 0.01,
"fromCurrency": "string",
"fromNetwork": "string",
"refundAddress": "stringstri",
"callbackUrl": "http://example.com",
"redirectUrl": "http://example.com"
}'{
"success": true,
"data": {
"sessionId": "string",
"amount": 0,
"currency": "string",
"description": "string",
"customerName": "string",
"customerEmail": "string",
"status": "PENDING",
"paymentTolerance": 0,
"fromCurrency": "string",
"fromNetwork": "string",
"refundAddress": "string",
"depositAddress": "string",
"callbackUrl": "string",
"redirectUrl": "string",
"expiresAt": "2019-08-24T14:15:22.123Z",
"createdAt": "2019-08-24T14:15:22.123Z",
"authToken": "string"
}
}