SMS Bash API example
Here's a simple bash example that allows you to send an SMS to a single number.
#!/bin/bash
token='Your token' #Your first token must be created on www.sms-handirect.fr/developers/api-tokens
text='Test bash'
to='33612345678'
sender='Bash'
curl -H "Authorization: Bearer $token" -H "Accept: application/json" -X GET "https://api.handirect.pro/send?text=$text&to=$to&sender=$sender"