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 | 126.0749 HUF |
| ALAlbania | 40.3748 HUF |
| DZAlgeria | 102.6788 HUF |
| ASAmerican Samoa | 43.0884 HUF |
| ADAndorra | 30.5469 HUF |
| AOAngola | 28.6034 HUF |
| AIAnguilla | 59.4070 HUF |
| AGAntigua & Barbuda | 81.4096 HUF |
| ARArgentina | 33.2239 HUF |
| AMArmenia | 77.9259 HUF |
| AWAruba | 48.4057 HUF |
| AUAustralia | 11.1113 HUF |
| ATAustria | 19.0689 HUF |
| AZAzerbaijan | 113.9735 HUF |
| BSBahamas | 26.8065 HUF |
| BHBahrain | 15.4018 HUF |
| BDBangladesh | 168.4666 HUF |
| BBBarbados | 89.4039 HUF |
| BYBelarus | 64.6510 HUF |
| BEBelgium | 29.7035 HUF |
| BZBelize | 76.3124 HUF |
| BJBenin | 81.3729 HUF |
| BMBermuda | 89.4039 HUF |
| BTBhutan | 114.5969 HUF |
| BOBolivia | 75.9090 HUF |
| BABosnia & Herzegovina | 51.7061 HUF |
| BWBotswana | 48.1490 HUF |
| BRBrazil | 9.2044 HUF |
| IOBritish Indian Ocean Territory | 41.8049 HUF |
| VGBritish Virgin Islands | 89.4039 HUF |
| BNBrunei | 20.6458 HUF |
| BGBulgaria | 50.4226 HUF |
| BFBurkina Faso | 67.1079 HUF |
| BIBurundi | 145.2172 HUF |
| KHCambodia | 110.0130 HUF |
| CMCameroon | 90.2107 HUF |
| CACanada | 7.7009 HUF |
| CVCape Verde | 69.8949 HUF |
| KYCayman Islands | 82.5098 HUF |
| CFCentral African Republic | 31.9038 HUF |
| TDChad | 106.5659 HUF |
| CLChile | 14.9984 HUF |
| CNChina | 8.7277 HUF |
| COColombia | 6.8941 HUF |
| KMComoros | 116.6138 HUF |
| CGCongo - Brazzaville | 71.5085 HUF |
| CDCongo - Kinshasa | 101.2120 HUF |
| CKCook Islands | 41.5482 HUF |
| CRCosta Rica | 10.0845 HUF |
| HRCroatia | 47.4889 HUF |
| CUCuba | 30.0335 HUF |
| ANCuraçao | 44.0052 HUF |
| CWCuraçao | 100.8453 HUF |
| CYCyprus | 35.5342 HUF |
| CZCzechia | 18.1521 HUF |
| CICôte d’Ivoire | 93.5111 HUF |
| DKDenmark | 16.9053 HUF |
| DJDjibouti | 42.9051 HUF |
| DMDominica | 69.3082 HUF |
| DODominican Republic | 44.2252 HUF |
| ECEcuador | 95.7113 HUF |
| EGEgypt | 102.3121 HUF |
| SVEl Salvador | 41.8049 HUF |
| GQEquatorial Guinea | 66.0078 HUF |
| EREritrea | 34.0674 HUF |
| EEEstonia | 17.1987 HUF |
| SZEswatini | 56.1066 HUF |
| ETEthiopia | 100.8453 HUF |
| FKFalkland Islands | 23.9828 HUF |
| FOFaroe Islands | 17.5287 HUF |
| FJFiji | 61.9006 HUF |
| FIFinland | 15.4018 HUF |
| FRFrance | 18.1155 HUF |
| GFFrench Guiana | 19.6557 HUF |
| PFFrench Polynesia | 29.5202 HUF |
| GAGabon | 98.5716 HUF |
| GMGambia | 57.3168 HUF |
| GEGeorgia | 44.2252 HUF |
| DEGermany | 31.9404 HUF |
| GHGhana | 80.3095 HUF |
| GIGibraltar | 23.3961 HUF |
| GRGreece | 15.9886 HUF |
| GLGreenland | 4.1438 HUF |
| GDGrenada | 82.5098 HUF |
| GPGuadeloupe | 40.7048 HUF |
| GUGuam | 45.1053 HUF |
| GTGuatemala | 71.5085 HUF |
| GNGuinea | 88.0104 HUF |
| GWGuinea-Bissau | 81.4096 HUF |
| GYGuyana | 88.0104 HUF |
| HTHaiti | 89.4039 HUF |
| HNHonduras | 48.4057 HUF |
| HKHong Kong SAR China | 20.5724 HUF |
| HUHungary | 23.8362 HUF |
| ISIceland | 23.1394 HUF |
| INIndia | 27.3199 HUF |
| IDIndonesia | 147.7841 HUF |
| IRIran | 125.4148 HUF |
| IQIraq | 123.3246 HUF |
| IEIreland | 15.4018 HUF |
| ILIsrael | 73.3420 HUF |
| ITItaly | 17.5287 HUF |
| JMJamaica | 43.7852 HUF |
| JPJapan | 18.5189 HUF |
| JOJordan | 114.4135 HUF |
| KZKazakhstan | 123.7646 HUF |
| KEKenya | 44.0052 HUF |
| KIKiribati | 18.6655 HUF |
| XKKosovo | 91.6775 HUF |
| KWKuwait | 105.4291 HUF |
| KGKyrgyzstan | 94.2078 HUF |
| LALaos | 46.2055 HUF |
| LVLatvia | 18.3355 HUF |
| LBLebanon | 17.6021 HUF |
| LSLesotho | 86.9103 HUF |
| LRLiberia | 66.0078 HUF |
| LYLibya | 116.9071 HUF |
| LILiechtenstein | 14.6317 HUF |
| LTLithuania | 14.8884 HUF |
| LULuxembourg | 37.4044 HUF |
| MOMacao SAR China | 16.1352 HUF |
| MGMadagascar | 143.2369 HUF |
| MWMalawi | 96.2614 HUF |
| MYMalaysia | 55.0065 HUF |
| MVMaldives | 23.1027 HUF |
| MLMali | 78.1092 HUF |
| MTMalta | 20.0957 HUF |
| MHMarshall Islands | 20.6458 HUF |
| MQMartinique | 18.3355 HUF |
| MRMauritania | 83.6099 HUF |
| MUMauritius | 56.6567 HUF |
| MXMexico | 26.4031 HUF |
| FMMicronesia | 27.0632 HUF |
| MDMoldova | 48.8824 HUF |
| MCMonaco | 48.1857 HUF |
| MNMongolia | 107.7394 HUF |
| MEMontenegro | 52.7329 HUF |
| MSMontserrat | 46.2055 HUF |
| MAMorocco | 26.4031 HUF |
| MZMozambique | 46.2055 HUF |
| MMMyanmar (Burma) | 135.2426 HUF |
| NANamibia | 15.5485 HUF |
| NRNauru | 61.9006 HUF |
| NPNepal | 90.2107 HUF |
| NLNetherlands | 27.9800 HUF |
| NCNew Caledonia | 43.4918 HUF |
| NZNew Zealand | 15.4018 HUF |
| NINicaragua | 42.9051 HUF |
| NENiger | 103.1555 HUF |
| NGNigeria | 123.2146 HUF |
| NUNiue | 59.5904 HUF |
| KPNorth Korea | 30.7670 HUF |
| MKNorth Macedonia | 32.3072 HUF |
| NONorway | 13.2016 HUF |
| OMOman | 64.1742 HUF |
| PKPakistan | 132.0156 HUF |
| PWPalau | 41.9883 HUF |
| PSPalestinian Territories | 108.3995 HUF |
| PAPanama | 53.9064 HUF |
| PGPapua New Guinea | 71.0684 HUF |
| PYParaguay | 30.8036 HUF |
| PEPeru | 46.2055 HUF |
| PHPhilippines | 77.7058 HUF |
| PLPoland | 9.1678 HUF |
| PTPortugal | 9.6445 HUF |
| PRPuerto Rico | 38.3212 HUF |
| QAQatar | 38.5045 HUF |
| RORomania | 16.9787 HUF |
| RURussia | 148.0775 HUF |
| RWRwanda | 101.9821 HUF |
| RERéunion | 23.1027 HUF |
| WSSamoa | 51.7061 HUF |
| SMSan Marino | 20.5358 HUF |
| SASaudi Arabia | 70.4083 HUF |
| SNSenegal | 86.9103 HUF |
| RSSerbia | 71.5085 HUF |
| SCSeychelles | 39.6047 HUF |
| SLSierra Leone | 85.8101 HUF |
| SGSingapore | 16.9053 HUF |
| SXSint Maarten | 34.3241 HUF |
| SKSlovakia | 18.6289 HUF |
| SISlovenia | 57.3168 HUF |
| SBSolomon Islands | 30.8036 HUF |
| SOSomalia | 78.1092 HUF |
| ZASouth Africa | 17.6021 HUF |
| KRSouth Korea | 7.3342 HUF |
| SSSouth Sudan | 96.2614 HUF |
| ESSpain | 13.5683 HUF |
| LKSri Lanka | 137.2962 HUF |
| SHSt. Helena | 34.3974 HUF |
| KNSt. Kitts & Nevis | 89.4039 HUF |
| LCSt. Lucia | 86.9103 HUF |
| PMSt. Pierre & Miquelon | 44.0052 HUF |
| VCSt. Vincent & Grenadines | 69.3082 HUF |
| SDSudan | 112.3233 HUF |
| SRSuriname | 80.3095 HUF |
| SESweden | 17.7854 HUF |
| CHSwitzerland | 21.7826 HUF |
| SYSyria | 107.9594 HUF |
| STSão Tomé & Príncipe | 8.8010 HUF |
| TWTaiwan | 27.5032 HUF |
| TJTajikistan | 132.3090 HUF |
| TZTanzania | 98.5716 HUF |
| THThailand | 6.4174 HUF |
| TLTimor-Leste | 53.9064 HUF |
| TGTogo | 63.8075 HUF |
| TKTokelau | 9.1678 HUF |
| TOTonga | 61.9006 HUF |
| TTTrinidad & Tobago | 86.9103 HUF |
| TNTunisia | 105.6125 HUF |
| TMTurkmenistan | 80.2361 HUF |
| TCTurks & Caicos Islands | 58.4536 HUF |
| TVTuvalu | 57.3168 HUF |
| TRTürkiye | 2.7870 HUF |
| VIU.S. Virgin Islands | 13.5316 HUF |
| UGUganda | 103.5956 HUF |
| UAUkraine | 64.1742 HUF |
| AEUnited Arab Emirates | 33.4806 HUF |
| GBUnited Kingdom | 14.7051 HUF |
| USUnited States | 7.7009 HUF |
| ZZUnknown Region | 30.2536 HUF |
| UYUruguay | 38.9813 HUF |
| UZUzbekistan | 142.1001 HUF |
| VUVanuatu | 60.5072 HUF |
| VEVenezuela | 48.4057 HUF |
| VNVietnam | 81.3729 HUF |
| WFWallis & Futuna | 27.1732 HUF |
| YEYemen | 63.2575 HUF |
| ZMZambia | 96.0413 HUF |
| ZWZimbabwe | 66.7045 HUF |
No enabled destination matches that search.
You can still read the complete privacy policy in a new window.