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 |
| ALAlbania | €0.1101 |
| DZAlgerie | €0.2800 |
| ASAmerikansk Samoa | €0.1175 |
| ADAndorra | €0.0833 |
| AOAngola | €0.0780 |
| AIAnguilla | €0.1620 |
| AGAntigua og Barbuda | €0.2220 |
| ARArgentina | €0.0906 |
| AMArmenia | €0.2125 |
| AWAruba | €0.1320 |
| AZAserbajdsjan | €0.3108 |
| AUAustralia | €0.0303 |
| BSBahamas | €0.0731 |
| BHBahrain | €0.0420 |
| BDBangladesh | €0.4594 |
| BBBarbados | €0.2438 |
| BEBelgia | €0.0810 |
| BZBelize | €0.2081 |
| BJBenin | €0.2219 |
| BMBermuda | €0.2438 |
| BTBhutan | €0.3125 |
| BOBolivia | €0.2070 |
| BABosnia-Hercegovina | €0.1410 |
| BWBotswana | €0.1313 |
| BRBrasil | €0.0251 |
| BNBrunei | €0.0563 |
| BGBulgaria | €0.1375 |
| BFBurkina Faso | €0.1830 |
| BIBurundi | €0.3960 |
| CACanada | €0.0210 |
| KYCaymanøyene | €0.2250 |
| CLChile | €0.0409 |
| COColombia | €0.0188 |
| CKCookøyene | €0.1133 |
| CRCosta Rica | €0.0275 |
| CUCuba | €0.0819 |
| CWCuraçao | €0.2750 |
| ANCuraçao | €0.1200 |
| DKDanmark | €0.0461 |
| VIDe amerikanske jomfruøyene | €0.0369 |
| VGDe britiske jomfruøyene | €0.2438 |
| AEDe forente arabiske emirater | €0.0913 |
| DODen dominikanske republikk | €0.1206 |
| CFDen sentralafrikanske republikk | €0.0870 |
| IODet britiske territoriet i Indiahavet | €0.1140 |
| PSDet palestinske området | €0.2956 |
| DJDjibouti | €0.1170 |
| DMDominica | €0.1890 |
| ECEcuador | €0.2610 |
| EGEgypt | €0.2790 |
| GQEkvatorial-Guinea | €0.1800 |
| SVEl Salvador | €0.1140 |
| CIElfenbenskysten | €0.2550 |
| EREritrea | €0.0929 |
| EEEstland | €0.0469 |
| SZEswatini | €0.1530 |
| ETEtiopia | €0.2750 |
| FKFalklandsøyene | €0.0654 |
| FJFiji | €0.1688 |
| PHFilippinene | €0.2119 |
| FIFinland | €0.0420 |
| FRFrankrike | €0.0494 |
| GFFransk Guyana | €0.0536 |
| PFFransk Polynesia | €0.0805 |
| FOFærøyene | €0.0478 |
| GAGabon | €0.2688 |
| GMGambia | €0.1563 |
| GEGeorgia | €0.1206 |
| GHGhana | €0.2190 |
| GIGibraltar | €0.0638 |
| GDGrenada | €0.2250 |
| 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 |
| GRHellas | €0.0436 |
| HNHonduras | €0.1320 |
| HKHongkong S.A.R. Kina | €0.0561 |
| BYHviterussland | €0.1763 |
| INIndia | €0.0745 |
| IDIndonesia | €0.4030 |
| IQIrak | €0.3363 |
| IRIran | €0.3420 |
| IEIrland | €0.0420 |
| ISIsland | €0.0631 |
| ILIsrael | €0.2000 |
| ITItalia | €0.0478 |
| JMJamaica | €0.1194 |
| JPJapan | €0.0505 |
| YEJemen | €0.1725 |
| JOJordan | €0.3120 |
| KHKambodsja | €0.3000 |
| CMKamerun | €0.2460 |
| CVKapp Verde | €0.1906 |
| KZKasakhstan | €0.3375 |
| KEKenya | €0.1200 |
| CNKina | €0.0238 |
| KGKirgisistan | €0.2569 |
| KIKiribati | €0.0509 |
| KMKomorene | €0.3180 |
| CGKongo-Brazzaville | €0.1950 |
| CDKongo-Kinshasa | €0.2760 |
| XKKosovo | €0.2500 |
| HRKroatia | €0.1295 |
| KWKuwait | €0.2875 |
| CYKypros | €0.0969 |
| LALaos | €0.1260 |
| LVLatvia | €0.0500 |
| LSLesotho | €0.2370 |
| LBLibanon | €0.0480 |
| LRLiberia | €0.1800 |
| LYLibya | €0.3188 |
| LILiechtenstein | €0.0399 |
| LTLitauen | €0.0406 |
| LULuxemburg | €0.1020 |
| MOMacao S.A.R. Kina | €0.0440 |
| MGMadagaskar | €0.3906 |
| MWMalawi | €0.2625 |
| MYMalaysia | €0.1500 |
| MVMaldivene | €0.0630 |
| MLMali | €0.2130 |
| MTMalta | €0.0548 |
| MAMarokko | €0.0720 |
| MHMarshalløyene | €0.0563 |
| MQMartinique | €0.0500 |
| MRMauritania | €0.2280 |
| MUMauritius | €0.1545 |
| MXMexico | €0.0720 |
| FMMikronesiaføderasjonen | €0.0738 |
| MDMoldova | €0.1333 |
| MCMonaco | €0.1314 |
| MNMongolia | €0.2938 |
| MEMontenegro | €0.1438 |
| MSMontserrat | €0.1260 |
| MZMosambik | €0.1260 |
| MMMyanmar (Burma) | €0.3688 |
| NANamibia | €0.0424 |
| NRNauru | €0.1688 |
| NLNederland | €0.0763 |
| NPNepal | €0.2460 |
| NZNew Zealand | €0.0420 |
| NINicaragua | €0.1170 |
| NENiger | €0.2813 |
| NGNigeria | €0.3360 |
| NUNiue | €0.1625 |
| KPNord-Korea | €0.0839 |
| MKNord-Makedonia | €0.0881 |
| NONorge | €0.0360 |
| NCNy-Caledonia | €0.1186 |
| OMOman | €0.1750 |
| PKPakistan | €0.3600 |
| PWPalau | €0.1145 |
| PAPanama | €0.1470 |
| PGPapua Ny-Guinea | €0.1938 |
| PYParaguay | €0.0840 |
| PEPeru | €0.1260 |
| PLPolen | €0.0250 |
| PTPortugal | €0.0263 |
| PRPuerto Rico | €0.1045 |
| QAQatar | €0.1050 |
| RORomania | €0.0463 |
| RURussland | €0.4038 |
| RWRwanda | €0.2781 |
| RERéunion | €0.0630 |
| KNSaint Kitts og Nevis | €0.2438 |
| PMSaint-Pierre-et-Miquelon | €0.1200 |
| SBSalomonøyene | €0.0840 |
| WSSamoa | €0.1410 |
| SMSan Marino | €0.0560 |
| SASaudi-Arabia | €0.1920 |
| SNSenegal | €0.2370 |
| RSSerbia | €0.1950 |
| SCSeychellene | €0.1080 |
| SLSierra Leone | €0.2340 |
| SGSingapore | €0.0461 |
| SXSint Maarten | €0.0936 |
| SKSlovakia | €0.0508 |
| SISlovenia | €0.1563 |
| SOSomalia | €0.2130 |
| ESSpania | €0.0370 |
| LKSri Lanka | €0.3744 |
| SHSt. Helena | €0.0938 |
| LCSt. Lucia | €0.2370 |
| VCSt. Vincent og Grenadinene | €0.1890 |
| GBStorbritannia | €0.0401 |
| SDSudan | €0.3063 |
| SRSurinam | €0.2190 |
| CHSveits | €0.0594 |
| SESverige | €0.0485 |
| SYSyria | €0.2944 |
| STSão Tomé og Príncipe | €0.0240 |
| ZASør-Afrika | €0.0480 |
| KRSør-Korea | €0.0200 |
| SSSør-Sudan | €0.2625 |
| TJTadsjikistan | €0.3608 |
| TWTaiwan | €0.0750 |
| TZTanzania | €0.2688 |
| THThailand | €0.0175 |
| TGTogo | €0.1740 |
| TKTokelau | €0.0250 |
| TOTonga | €0.1688 |
| TTTrinidad og Tobago | €0.2370 |
| TDTsjad | €0.2906 |
| CZTsjekkia | €0.0495 |
| TNTunisia | €0.2880 |
| TMTurkmenistan | €0.2188 |
| TCTurks- og Caicosøyene | €0.1594 |
| TVTuvalu | €0.1563 |
| TRTyrkia | €0.0076 |
| DETyskland | €0.0871 |
| UGUganda | €0.2825 |
| ZZukjent område | €0.0825 |
| UAUkraina | €0.1750 |
| HUUngarn | €0.0650 |
| UYUruguay | €0.1063 |
| USUSA | €0.0210 |
| UZUsbekistan | €0.3875 |
| VUVanuatu | €0.1650 |
| VEVenezuela | €0.1320 |
| VNVietnam | €0.2219 |
| WFWallis og Futuna | €0.0741 |
| ZMZambia | €0.2619 |
| ZWZimbabwe | €0.1819 |
| TLØst-Timor | €0.1470 |
| ATØsterrike | €0.0520 |
No enabled destination matches that search.
You can still read the complete privacy policy in a new window.