Send with confidence
Submit outbound SMS through a documented API with recipient and message validation before it enters the delivery queue.
Domains, security, performance and connected services for the systems your business relies on.
Explore all services →SMS Developer API
Send alerts, verification messages and customer updates through a documented API designed for real operational workflows.
Built for developers
Start with a direct integration, then add controls and delivery feedback as the workflow becomes more important.
Submit outbound SMS through a documented API with recipient and message validation before it enters the delivery queue.
Check the message and destination before committing usage, so your application can make deliberate decisions.
Use callbacks for delivery events and, where needed, HLR lookup results in the systems that need them.
Use API tokens and optional IP restrictions to keep a production integration scoped to the right system.
From request to result
Your application remains in control: validate the destination, estimate usage, submit once and consume delivery events asynchronously.
Keep production systems isolated with revocable credentials and optional source-IP restrictions.
Use the estimate operation to validate recipient and message characteristics before committing the request.
Accepted messages enter an asynchronous delivery workflow and return a reference your application can retain.
Delivery callbacks let your application update its own workflow without repeatedly polling for every message.
Use SMS for account creation, requested notifications and two-step login challenges with your own expiry and retry policy.
The service is usage-based. Destination, route and sender requirements are confirmed before production traffic is enabled.
Manage credentials, allowed sources, usage and delivery activity securely from your Silurian workspace.
Developer experience
Send the same authenticated JSON request from your preferred server-side stack. Keep the API token outside browser code and use the estimate operation before sending when price or message length matters.
curl --request POST 'https://api.silurian.net/sms/v2/send' \
--user 'YOUR_API_TOKEN:' \
--header 'Content-Type: application/json' \
--data '{
"sender": "YOURBRAND",
"message": "Your verification code is 123456.",
"recipients": [{"msisdn": "+34XXXXXXXXX"}]
}'
<?php
$apiToken = 'YOUR_API_TOKEN';
$payload = [
'sender' => 'YOURBRAND',
'message' => 'Your verification code is 123456.',
'recipients' => [['msisdn' => '+34XXXXXXXXX']],
];
$request = curl_init('https://api.silurian.net/sms/v2/send');
curl_setopt_array($request, [
CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
CURLOPT_USERPWD => $apiToken . ':',
CURLOPT_HTTPHEADER => ['Content-Type: application/json'],
CURLOPT_POSTFIELDS => json_encode($payload),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 15,
]);
$response = curl_exec($request);
$status = curl_getinfo($request, CURLINFO_HTTP_CODE);
curl_close($request);
import requests
api_token = "YOUR_API_TOKEN"
payload = {
"sender": "YOURBRAND",
"message": "Your verification code is 123456.",
"recipients": [{"msisdn": "+34XXXXXXXXX"}],
}
response = requests.post(
"https://api.silurian.net/sms/v2/send",
auth=(api_token, ""),
json=payload,
timeout=15,
)
response.raise_for_status()
result = response.json()
const apiToken = 'YOUR_API_TOKEN';
const credentials = Buffer.from(`${apiToken}:`).toString('base64');
const response = await fetch(
'https://api.silurian.net/sms/v2/send',
{
method: 'POST',
headers: {
Authorization: `Basic ${credentials}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
sender: 'YOURBRAND',
message: 'Your verification code is 123456.',
recipients: [{ msisdn: '+34XXXXXXXXX' }],
}),
},
);
const result = await response.json();
Destination pricing
Prices below are the current public Silurian rate per SMS part, before VAT. The API estimate operation remains authoritative because message length, destination, route and sender requirements are checked for each request.
| Destination | Price per SMS part |
|---|---|
| AFAfghanistan | €0.3438 |
| ALAlbanien | €0.1101 |
| DZAlgerien | €0.2800 |
| ASAmerikanisch-Samoa | €0.1175 |
| VIAmerikanische Jungferninseln | €0.0369 |
| ADAndorra | €0.0833 |
| AOAngola | €0.0780 |
| AIAnguilla | €0.1620 |
| AGAntigua und Barbuda | €0.2220 |
| ARArgentinien | €0.0906 |
| AMArmenien | €0.2125 |
| AWAruba | €0.1320 |
| AZAserbaidschan | €0.3108 |
| AUAustralien | €0.0303 |
| BSBahamas | €0.0731 |
| BHBahrain | €0.0420 |
| BDBangladesch | €0.4594 |
| BBBarbados | €0.2438 |
| BYBelarus | €0.1763 |
| BEBelgien | €0.0810 |
| BZBelize | €0.2081 |
| BJBenin | €0.2219 |
| BMBermuda | €0.2438 |
| BTBhutan | €0.3125 |
| BOBolivien | €0.2070 |
| BABosnien und Herzegowina | €0.1410 |
| BWBotsuana | €0.1313 |
| BRBrasilien | €0.0251 |
| VGBritische Jungferninseln | €0.2438 |
| IOBritisches Territorium im Indischen Ozean | €0.1140 |
| BNBrunei Darussalam | €0.0563 |
| BGBulgarien | €0.1375 |
| BFBurkina Faso | €0.1830 |
| BIBurundi | €0.3960 |
| CVCabo Verde | €0.1906 |
| CLChile | €0.0409 |
| CNChina | €0.0238 |
| CKCookinseln | €0.1133 |
| CRCosta Rica | €0.0275 |
| ANCuraçao | €0.1200 |
| CWCuraçao | €0.2750 |
| CICôte d’Ivoire | €0.2550 |
| DEDeutschland | €0.0871 |
| DMDominica | €0.1890 |
| DODominikanische Republik | €0.1206 |
| DJDschibuti | €0.1170 |
| DKDänemark | €0.0461 |
| ECEcuador | €0.2610 |
| SVEl Salvador | €0.1140 |
| EREritrea | €0.0929 |
| EEEstland | €0.0469 |
| SZEswatini | €0.1530 |
| FKFalklandinseln | €0.0654 |
| FJFidschi | €0.1688 |
| FIFinnland | €0.0420 |
| FRFrankreich | €0.0494 |
| GFFranzösisch-Guayana | €0.0536 |
| PFFranzösisch-Polynesien | €0.0805 |
| FOFäröer | €0.0478 |
| GAGabun | €0.2688 |
| GMGambia | €0.1563 |
| GEGeorgien | €0.1206 |
| GHGhana | €0.2190 |
| GIGibraltar | €0.0638 |
| GDGrenada | €0.2250 |
| GRGriechenland | €0.0436 |
| GLGrönland | €0.0113 |
| GPGuadeloupe | €0.1110 |
| GUGuam | €0.1230 |
| GTGuatemala | €0.1950 |
| GNGuinea | €0.2400 |
| GWGuinea-Bissau | €0.2220 |
| GYGuyana | €0.2400 |
| HTHaiti | €0.2438 |
| HNHonduras | €0.1320 |
| INIndien | €0.0745 |
| IDIndonesien | €0.4030 |
| IQIrak | €0.3363 |
| IRIran | €0.3420 |
| IEIrland | €0.0420 |
| ISIsland | €0.0631 |
| ILIsrael | €0.2000 |
| ITItalien | €0.0478 |
| JMJamaika | €0.1194 |
| JPJapan | €0.0505 |
| YEJemen | €0.1725 |
| JOJordanien | €0.3120 |
| KYKaimaninseln | €0.2250 |
| KHKambodscha | €0.3000 |
| CMKamerun | €0.2460 |
| CAKanada | €0.0210 |
| KZKasachstan | €0.3375 |
| QAKatar | €0.1050 |
| KEKenia | €0.1200 |
| KGKirgisistan | €0.2569 |
| KIKiribati | €0.0509 |
| COKolumbien | €0.0188 |
| KMKomoren | €0.3180 |
| CGKongo-Brazzaville | €0.1950 |
| CDKongo-Kinshasa | €0.2760 |
| XKKosovo | €0.2500 |
| HRKroatien | €0.1295 |
| CUKuba | €0.0819 |
| KWKuwait | €0.2875 |
| LALaos | €0.1260 |
| LSLesotho | €0.2370 |
| LVLettland | €0.0500 |
| LBLibanon | €0.0480 |
| LRLiberia | €0.1800 |
| LYLibyen | €0.3188 |
| LILiechtenstein | €0.0399 |
| LTLitauen | €0.0406 |
| LULuxemburg | €0.1020 |
| MGMadagaskar | €0.3906 |
| MWMalawi | €0.2625 |
| MYMalaysia | €0.1500 |
| MVMalediven | €0.0630 |
| MLMali | €0.2130 |
| MTMalta | €0.0548 |
| MAMarokko | €0.0720 |
| MHMarshallinseln | €0.0563 |
| MQMartinique | €0.0500 |
| MRMauretanien | €0.2280 |
| MUMauritius | €0.1545 |
| MXMexiko | €0.0720 |
| FMMikronesien | €0.0738 |
| MCMonaco | €0.1314 |
| MNMongolei | €0.2938 |
| MEMontenegro | €0.1438 |
| MSMontserrat | €0.1260 |
| MZMosambik | €0.1260 |
| MMMyanmar | €0.3688 |
| NANamibia | €0.0424 |
| NRNauru | €0.1688 |
| NPNepal | €0.2460 |
| NCNeukaledonien | €0.1186 |
| NZNeuseeland | €0.0420 |
| NINicaragua | €0.1170 |
| NLNiederlande | €0.0763 |
| NENiger | €0.2813 |
| NGNigeria | €0.3360 |
| NUNiue | €0.1625 |
| KPNordkorea | €0.0839 |
| MKNordmazedonien | €0.0881 |
| NONorwegen | €0.0360 |
| OMOman | €0.1750 |
| PKPakistan | €0.3600 |
| PWPalau | €0.1145 |
| PSPalästinensische Autonomiegebiete | €0.2956 |
| PAPanama | €0.1470 |
| PGPapua-Neuguinea | €0.1938 |
| PYParaguay | €0.0840 |
| PEPeru | €0.1260 |
| PHPhilippinen | €0.2119 |
| PLPolen | €0.0250 |
| PTPortugal | €0.0263 |
| PRPuerto Rico | €0.1045 |
| MDRepublik Moldau | €0.1333 |
| RWRuanda | €0.2781 |
| RORumänien | €0.0463 |
| RURussland | €0.4038 |
| RERéunion | €0.0630 |
| SBSalomonen | €0.0840 |
| ZMSambia | €0.2619 |
| WSSamoa | €0.1410 |
| SMSan Marino | €0.0560 |
| SASaudi-Arabien | €0.1920 |
| SESchweden | €0.0485 |
| CHSchweiz | €0.0594 |
| SNSenegal | €0.2370 |
| RSSerbien | €0.1950 |
| SCSeychellen | €0.1080 |
| SLSierra Leone | €0.2340 |
| ZWSimbabwe | €0.1819 |
| SGSingapur | €0.0461 |
| SXSint Maarten | €0.0936 |
| SKSlowakei | €0.0508 |
| SISlowenien | €0.1563 |
| SOSomalia | €0.2130 |
| HKSonderverwaltungsregion Hongkong | €0.0561 |
| MOSonderverwaltungsregion Macau | €0.0440 |
| ESSpanien | €0.0370 |
| LKSri Lanka | €0.3744 |
| SHSt. Helena | €0.0938 |
| KNSt. Kitts und Nevis | €0.2438 |
| LCSt. Lucia | €0.2370 |
| PMSt. Pierre und Miquelon | €0.1200 |
| VCSt. Vincent und die Grenadinen | €0.1890 |
| SDSudan | €0.3063 |
| SRSuriname | €0.2190 |
| SYSyrien | €0.2944 |
| STSão Tomé und Príncipe | €0.0240 |
| ZASüdafrika | €0.0480 |
| KRSüdkorea | €0.0200 |
| SSSüdsudan | €0.2625 |
| TJTadschikistan | €0.3608 |
| TWTaiwan | €0.0750 |
| TZTansania | €0.2688 |
| THThailand | €0.0175 |
| TLTimor-Leste | €0.1470 |
| TGTogo | €0.1740 |
| TKTokelau | €0.0250 |
| TOTonga | €0.1688 |
| TTTrinidad und Tobago | €0.2370 |
| TDTschad | €0.2906 |
| CZTschechien | €0.0495 |
| TNTunesien | €0.2880 |
| TMTurkmenistan | €0.2188 |
| TCTurks- und Caicosinseln | €0.1594 |
| TVTuvalu | €0.1563 |
| TRTürkei | €0.0076 |
| UGUganda | €0.2825 |
| UAUkraine | €0.1750 |
| ZZUnbekannte Region | €0.0825 |
| HUUngarn | €0.0650 |
| UYUruguay | €0.1063 |
| UZUsbekistan | €0.3875 |
| VUVanuatu | €0.1650 |
| VEVenezuela | €0.1320 |
| AEVereinigte Arabische Emirate | €0.0913 |
| USVereinigte Staaten | €0.0210 |
| GBVereinigtes Königreich | €0.0401 |
| VNVietnam | €0.2219 |
| WFWallis und Futuna | €0.0741 |
| CFZentralafrikanische Republik | €0.0870 |
| CYZypern | €0.0969 |
| EGÄgypten | €0.2790 |
| GQÄquatorialguinea | €0.1800 |
| ETÄthiopien | €0.2750 |
| ATÖsterreich | €0.0520 |
No enabled destination matches that search.
You can still read the complete privacy policy in a new window.