curl --request POST \
--url https://api.paycrest.io/v1/sender/orders \
--header 'API-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": 123,
"token": "<string>",
"rate": 123,
"network": "base",
"recipient": {
"institution": "<string>",
"accountIdentifier": "<string>",
"accountName": "<string>",
"memo": "<string>",
"providerId": "<string>",
"metadata": {},
"currency": "<string>"
},
"reference": "<string>",
"returnAddress": "<string>"
}
'