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 my.smsup.de/developers/api-tokens
text='Test bash'
to='4915123456789'
sender='Bash'
curl -H "Authorization: Bearer $token" -H "Accept: application/json" -X GET "https://api.smsup.de/send?text=$text&to=$to&sender=$sender"