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 | 8.3220 CZK |
| ALAlbania | 2.6651 CZK |
| DZAlgeria | 6.7777 CZK |
| ASAmerican Samoa | 2.8442 CZK |
| ADAndorra | 2.0164 CZK |
| AOAngola | 1.8881 CZK |
| AIAnguilla | 3.9214 CZK |
| AGAntigua & Barbuda | 5.3737 CZK |
| ARArgentina | 2.1931 CZK |
| AMArmenia | 5.1438 CZK |
| AWAruba | 3.1952 CZK |
| AUAustralia | 0.7334 CZK |
| ATAustria | 1.2587 CZK |
| AZAzerbaijan | 7.5232 CZK |
| BSBahamas | 1.7695 CZK |
| BHBahrain | 1.0167 CZK |
| BDBangladesh | 11.1202 CZK |
| BBBarbados | 5.9014 CZK |
| BYBelarus | 4.2675 CZK |
| BEBelgium | 1.9607 CZK |
| BZBelize | 5.0373 CZK |
| BJBenin | 5.3713 CZK |
| BMBermuda | 5.9014 CZK |
| BTBhutan | 7.5644 CZK |
| BOBolivia | 5.0106 CZK |
| BABosnia & Herzegovina | 3.4130 CZK |
| BWBotswana | 3.1782 CZK |
| BRBrazil | 0.6076 CZK |
| IOBritish Indian Ocean Territory | 2.7595 CZK |
| VGBritish Virgin Islands | 5.9014 CZK |
| BNBrunei | 1.3628 CZK |
| BGBulgaria | 3.3283 CZK |
| BFBurkina Faso | 4.4297 CZK |
| BIBurundi | 9.5856 CZK |
| KHCambodia | 7.2618 CZK |
| CMCameroon | 5.9547 CZK |
| CACanada | 0.5083 CZK |
| CVCape Verde | 4.6137 CZK |
| KYCayman Islands | 5.4464 CZK |
| CFCentral African Republic | 2.1059 CZK |
| TDChad | 7.0343 CZK |
| CLChile | 0.9900 CZK |
| CNChina | 0.5761 CZK |
| COColombia | 0.4551 CZK |
| KMComoros | 7.6975 CZK |
| CGCongo - Brazzaville | 4.7202 CZK |
| CDCongo - Kinshasa | 6.6809 CZK |
| CKCook Islands | 2.7425 CZK |
| CRCosta Rica | 0.6657 CZK |
| HRCroatia | 3.1347 CZK |
| CUCuba | 1.9825 CZK |
| ANCuraçao | 2.9047 CZK |
| CWCuraçao | 6.6567 CZK |
| CYCyprus | 2.3456 CZK |
| CZCzechia | 1.1982 CZK |
| CICôte d’Ivoire | 6.1725 CZK |
| DKDenmark | 1.1159 CZK |
| DJDjibouti | 2.8321 CZK |
| DMDominica | 4.5749 CZK |
| DODominican Republic | 2.9192 CZK |
| ECEcuador | 6.3178 CZK |
| EGEgypt | 6.7535 CZK |
| SVEl Salvador | 2.7595 CZK |
| GQEquatorial Guinea | 4.3571 CZK |
| EREritrea | 2.2487 CZK |
| EEEstonia | 1.1353 CZK |
| SZEswatini | 3.7035 CZK |
| ETEthiopia | 6.6567 CZK |
| FKFalkland Islands | 1.5831 CZK |
| FOFaroe Islands | 1.1570 CZK |
| FJFiji | 4.0860 CZK |
| FIFinland | 1.0167 CZK |
| FRFrance | 1.1958 CZK |
| GFFrench Guiana | 1.2974 CZK |
| PFFrench Polynesia | 1.9486 CZK |
| GAGabon | 6.5066 CZK |
| GMGambia | 3.7834 CZK |
| GEGeorgia | 2.9192 CZK |
| DEGermany | 2.1083 CZK |
| GHGhana | 5.3011 CZK |
| GIGibraltar | 1.5443 CZK |
| GRGreece | 1.0554 CZK |
| GLGreenland | 0.2735 CZK |
| GDGrenada | 5.4464 CZK |
| GPGuadeloupe | 2.6869 CZK |
| GUGuam | 2.9773 CZK |
| GTGuatemala | 4.7202 CZK |
| GNGuinea | 5.8094 CZK |
| GWGuinea-Bissau | 5.3737 CZK |
| GYGuyana | 5.8094 CZK |
| HTHaiti | 5.9014 CZK |
| HNHonduras | 3.1952 CZK |
| HKHong Kong SAR China | 1.3580 CZK |
| HUHungary | 1.5734 CZK |
| ISIceland | 1.5274 CZK |
| INIndia | 1.8033 CZK |
| IDIndonesia | 9.7550 CZK |
| IRIran | 8.2785 CZK |
| IQIraq | 8.1405 CZK |
| IEIreland | 1.0167 CZK |
| ILIsrael | 4.8412 CZK |
| ITItaly | 1.1570 CZK |
| JMJamaica | 2.8902 CZK |
| JPJapan | 1.2224 CZK |
| JOJordan | 7.5523 CZK |
| KZKazakhstan | 8.1695 CZK |
| KEKenya | 2.9047 CZK |
| KIKiribati | 1.2321 CZK |
| XKKosovo | 6.0515 CZK |
| KWKuwait | 6.9592 CZK |
| KGKyrgyzstan | 6.2185 CZK |
| LALaos | 3.0500 CZK |
| LVLatvia | 1.2103 CZK |
| LBLebanon | 1.1619 CZK |
| LSLesotho | 5.7368 CZK |
| LRLiberia | 4.3571 CZK |
| LYLibya | 7.7169 CZK |
| LILiechtenstein | 0.9658 CZK |
| LTLithuania | 0.9828 CZK |
| LULuxembourg | 2.4690 CZK |
| MOMacao SAR China | 1.0651 CZK |
| MGMadagascar | 9.4549 CZK |
| MWMalawi | 6.3541 CZK |
| MYMalaysia | 3.6309 CZK |
| MVMaldives | 1.5250 CZK |
| MLMali | 5.1559 CZK |
| MTMalta | 1.3265 CZK |
| MHMarshall Islands | 1.3628 CZK |
| MQMartinique | 1.2103 CZK |
| MRMauritania | 5.5190 CZK |
| MUMauritius | 3.7398 CZK |
| MXMexico | 1.7428 CZK |
| FMMicronesia | 1.7864 CZK |
| MDMoldova | 3.2267 CZK |
| MCMonaco | 3.1807 CZK |
| MNMongolia | 7.1117 CZK |
| MEMontenegro | 3.4808 CZK |
| MSMontserrat | 3.0500 CZK |
| MAMorocco | 1.7428 CZK |
| MZMozambique | 3.0500 CZK |
| MMMyanmar (Burma) | 8.9272 CZK |
| NANamibia | 1.0263 CZK |
| NRNauru | 4.0860 CZK |
| NPNepal | 5.9547 CZK |
| NLNetherlands | 1.8469 CZK |
| NCNew Caledonia | 2.8708 CZK |
| NZNew Zealand | 1.0167 CZK |
| NINicaragua | 2.8321 CZK |
| NENiger | 6.8091 CZK |
| NGNigeria | 8.1332 CZK |
| NUNiue | 3.9335 CZK |
| KPNorth Korea | 2.0309 CZK |
| MKNorth Macedonia | 2.1325 CZK |
| NONorway | 0.8714 CZK |
| OMOman | 4.2361 CZK |
| PKPakistan | 8.7142 CZK |
| PWPalau | 2.7716 CZK |
| PSPalestinian Territories | 7.1553 CZK |
| PAPanama | 3.5583 CZK |
| PGPapua New Guinea | 4.6911 CZK |
| PYParaguay | 2.0333 CZK |
| PEPeru | 3.0500 CZK |
| PHPhilippines | 5.1293 CZK |
| PLPoland | 0.6052 CZK |
| PTPortugal | 0.6366 CZK |
| PRPuerto Rico | 2.5295 CZK |
| QAQatar | 2.5416 CZK |
| RORomania | 1.1207 CZK |
| RURussia | 9.7744 CZK |
| RWRwanda | 6.7317 CZK |
| RERéunion | 1.5250 CZK |
| WSSamoa | 3.4130 CZK |
| SMSan Marino | 1.3555 CZK |
| SASaudi Arabia | 4.6476 CZK |
| SNSenegal | 5.7368 CZK |
| RSSerbia | 4.7202 CZK |
| SCSeychelles | 2.6142 CZK |
| SLSierra Leone | 5.6642 CZK |
| SGSingapore | 1.1159 CZK |
| SXSint Maarten | 2.2657 CZK |
| SKSlovakia | 1.2297 CZK |
| SISlovenia | 3.7834 CZK |
| SBSolomon Islands | 2.0333 CZK |
| SOSomalia | 5.1559 CZK |
| ZASouth Africa | 1.1619 CZK |
| KRSouth Korea | 0.4841 CZK |
| SSSouth Sudan | 6.3541 CZK |
| ESSpain | 0.8956 CZK |
| LKSri Lanka | 9.0627 CZK |
| SHSt. Helena | 2.2705 CZK |
| KNSt. Kitts & Nevis | 5.9014 CZK |
| LCSt. Lucia | 5.7368 CZK |
| PMSt. Pierre & Miquelon | 2.9047 CZK |
| VCSt. Vincent & Grenadines | 4.5749 CZK |
| SDSudan | 7.4143 CZK |
| SRSuriname | 5.3011 CZK |
| SESweden | 1.1740 CZK |
| CHSwitzerland | 1.4378 CZK |
| SYSyria | 7.1262 CZK |
| STSão Tomé & Príncipe | 0.5809 CZK |
| TWTaiwan | 1.8154 CZK |
| TJTajikistan | 8.7335 CZK |
| TZTanzania | 6.5066 CZK |
| THThailand | 0.4236 CZK |
| TLTimor-Leste | 3.5583 CZK |
| TGTogo | 4.2118 CZK |
| TKTokelau | 0.6052 CZK |
| TOTonga | 4.0860 CZK |
| TTTrinidad & Tobago | 5.7368 CZK |
| TNTunisia | 6.9713 CZK |
| TMTurkmenistan | 5.2963 CZK |
| TCTurks & Caicos Islands | 3.8584 CZK |
| TVTuvalu | 3.7834 CZK |
| TRTürkiye | 0.1840 CZK |
| VIU.S. Virgin Islands | 0.8932 CZK |
| UGUganda | 6.8382 CZK |
| UAUkraine | 4.2361 CZK |
| AEUnited Arab Emirates | 2.2100 CZK |
| GBUnited Kingdom | 0.9707 CZK |
| USUnited States | 0.5083 CZK |
| ZZUnknown Region | 1.9970 CZK |
| UYUruguay | 2.5731 CZK |
| UZUzbekistan | 9.3798 CZK |
| VUVanuatu | 3.9940 CZK |
| VEVenezuela | 3.1952 CZK |
| VNVietnam | 5.3713 CZK |
| WFWallis & Futuna | 1.7937 CZK |
| YEYemen | 4.1755 CZK |
| ZMZambia | 6.3396 CZK |
| ZWZimbabwe | 4.4031 CZK |
No enabled destination matches that search.
You can still read the complete privacy policy in a new window.