Exemple — cURL
curl --location 'https://rest.smsmode.com/sms/v1/messages' \
--header 'X-Api-Key: YOUR_API_KEY_HERE' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
"recipient": {
"to": "33600000001"
},
"body": {
"text": "Your message content here"
}
}'