Send with confidence
Submit outbound SMS through a documented API with recipient and message validation before it enters the delivery queue.
Domener, sikkerhet, ytelse og tilkoblede tjenester for systemene virksomheten din er avhengig av.
Utforsk alle tjenester →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 | 3.7806 NOK |
| ALAlbania | 1.2107 NOK |
| DZAlgerie | 3.0790 NOK |
| ASAmerikansk Samoa | 1.2921 NOK |
| ADAndorra | 0.9160 NOK |
| AOAngola | 0.8577 NOK |
| AIAnguilla | 1.7814 NOK |
| AGAntigua og Barbuda | 2.4412 NOK |
| ARArgentina | 0.9963 NOK |
| AMArmenia | 2.3368 NOK |
| AWAruba | 1.4515 NOK |
| AZAserbajdsjan | 3.4177 NOK |
| AUAustralia | 0.3332 NOK |
| BSBahamas | 0.8038 NOK |
| BHBahrain | 0.4619 NOK |
| BDBangladesh | 5.0518 NOK |
| BBBarbados | 2.6809 NOK |
| BYBelarus | 1.9387 NOK |
| BEBelgia | 0.8907 NOK |
| BZBelize | 2.2884 NOK |
| BJBenin | 2.4401 NOK |
| BMBermuda | 2.6809 NOK |
| BTBhutan | 3.4364 NOK |
| BOBolivia | 2.2763 NOK |
| BABosnia-Hercegovina | 1.5505 NOK |
| BWBotswana | 1.4438 NOK |
| BRBrasil | 0.2760 NOK |
| BNBrunei | 0.6191 NOK |
| BGBulgaria | 1.5120 NOK |
| BFBurkina Faso | 2.0124 NOK |
| BIBurundi | 4.3546 NOK |
| CACanada | 0.2309 NOK |
| KYCaymanøyene | 2.4742 NOK |
| CLChile | 0.4498 NOK |
| COColombia | 0.2067 NOK |
| CKCookøyene | 1.2459 NOK |
| CRCosta Rica | 0.3024 NOK |
| CUCuba | 0.9006 NOK |
| ANCuraçao | 1.3196 NOK |
| CWCuraçao | 3.0240 NOK |
| DKDanmark | 0.5069 NOK |
| VIDe amerikanske jomfruøyene | 0.4058 NOK |
| VGDe britiske jomfruøyene | 2.6809 NOK |
| AEDe forente arabiske emirater | 1.0040 NOK |
| DODen dominikanske republikk | 1.3262 NOK |
| CFDen sentralafrikanske republikk | 0.9567 NOK |
| IODet britiske territoriet i Indiahavet | 1.2536 NOK |
| PSDet palestinske området | 3.2506 NOK |
| DJDjibouti | 1.2866 NOK |
| DMDominica | 2.0783 NOK |
| ECEcuador | 2.8701 NOK |
| EGEgypt | 3.0680 NOK |
| GQEkvatorial-Guinea | 1.9794 NOK |
| SVEl Salvador | 1.2536 NOK |
| CIElfenbenskysten | 2.8041 NOK |
| EREritrea | 1.0216 NOK |
| EEEstland | 0.5157 NOK |
| SZEswatini | 1.6825 NOK |
| ETEtiopia | 3.0240 NOK |
| FKFalklandsøyene | 0.7192 NOK |
| FJFiji | 1.8562 NOK |
| PHFilippinene | 2.3302 NOK |
| FIFinland | 0.4619 NOK |
| FRFrankrike | 0.5432 NOK |
| GFFransk Guyana | 0.5894 NOK |
| PFFransk Polynesia | 0.8852 NOK |
| FOFærøyene | 0.5256 NOK |
| GAGabon | 2.9559 NOK |
| GMGambia | 1.7188 NOK |
| GEGeorgia | 1.3262 NOK |
| GHGhana | 2.4082 NOK |
| GIGibraltar | 0.7016 NOK |
| GDGrenada | 2.4742 NOK |
| GLGrønland | 0.1243 NOK |
| GPGuadeloupe | 1.2206 NOK |
| GUGuam | 1.3526 NOK |
| GTGuatemala | 2.1443 NOK |
| GNGuinea | 2.6392 NOK |
| GWGuinea-Bissau | 2.4412 NOK |
| GYGuyana | 2.6392 NOK |
| HTHaiti | 2.6809 NOK |
| GRHellas | 0.4794 NOK |
| HNHonduras | 1.4515 NOK |
| HKHongkong SAR Kina | 0.6169 NOK |
| INIndia | 0.8192 NOK |
| IDIndonesia | 4.4316 NOK |
| IQIrak | 3.6981 NOK |
| IRIran | 3.7608 NOK |
| IEIrland | 0.4619 NOK |
| ISIsland | 0.6939 NOK |
| ILIsrael | 2.1993 NOK |
| ITItalia | 0.5256 NOK |
| JMJamaica | 1.3130 NOK |
| JPJapan | 0.5553 NOK |
| YEJemen | 1.8969 NOK |
| JOJordan | 3.4309 NOK |
| KHKambodsja | 3.2989 NOK |
| CMKamerun | 2.7051 NOK |
| CVKapp Verde | 2.0959 NOK |
| KZKasakhstan | 3.7113 NOK |
| KEKenya | 1.3196 NOK |
| CNKina | 0.2617 NOK |
| KGKirgisistan | 2.8250 NOK |
| KIKiribati | 0.5597 NOK |
| KMKomorene | 3.4969 NOK |
| CDKongo | 3.0350 NOK |
| CGKongo-Brazzaville | 2.1443 NOK |
| XKKosovo | 2.7491 NOK |
| HRKroatia | 1.4240 NOK |
| KWKuwait | 3.1615 NOK |
| CYKypros | 1.0656 NOK |
| LALaos | 1.3856 NOK |
| LVLatvia | 0.5498 NOK |
| LSLesotho | 2.6062 NOK |
| LBLibanon | 0.5278 NOK |
| LRLiberia | 1.9794 NOK |
| LYLibya | 3.5057 NOK |
| LILiechtenstein | 0.4388 NOK |
| LTLitauen | 0.4465 NOK |
| LULuxemburg | 1.1216 NOK |
| MOMacao SAR Kina | 0.4838 NOK |
| MGMadagaskar | 4.2952 NOK |
| MWMalawi | 2.8866 NOK |
| MYMalaysia | 1.6495 NOK |
| MVMaldivene | 0.6928 NOK |
| MLMali | 2.3423 NOK |
| MTMalta | 0.6026 NOK |
| MAMarokko | 0.7917 NOK |
| MHMarshalløyene | 0.6191 NOK |
| MQMartinique | 0.5498 NOK |
| MRMauritania | 2.5072 NOK |
| MUMauritius | 1.6990 NOK |
| MXMexico | 0.7917 NOK |
| FMMikronesiaføderasjonen | 0.8115 NOK |
| MDMoldova | 1.4658 NOK |
| MCMonaco | 1.4449 NOK |
| MNMongolia | 3.2308 NOK |
| MEMontenegro | 1.5813 NOK |
| MSMontserrat | 1.3856 NOK |
| MZMosambik | 1.3856 NOK |
| MMMyanmar (Burma) | 4.0555 NOK |
| NANamibia | 0.4663 NOK |
| NRNauru | 1.8562 NOK |
| NLNederland | 0.8390 NOK |
| NPNepal | 2.7051 NOK |
| NZNew Zealand | 0.4619 NOK |
| NINicaragua | 1.2866 NOK |
| NENiger | 3.0933 NOK |
| NGNigeria | 3.6948 NOK |
| NUNiue | 1.7869 NOK |
| KPNord-Korea | 0.9226 NOK |
| MKNord-Makedonia | 0.9688 NOK |
| NONorge | 0.3959 NOK |
| NCNy-Caledonia | 1.3042 NOK |
| OMOman | 1.9244 NOK |
| PKPakistan | 3.9587 NOK |
| PWPalau | 1.2591 NOK |
| PAPanama | 1.6165 NOK |
| PGPapua Ny-Guinea | 2.1311 NOK |
| PYParaguay | 0.9237 NOK |
| PEPeru | 1.3856 NOK |
| PLPolen | 0.2749 NOK |
| PTPortugal | 0.2892 NOK |
| PRPuerto Rico | 1.1491 NOK |
| QAQatar | 1.1546 NOK |
| RORomania | 0.5091 NOK |
| RURussland | 4.4404 NOK |
| RWRwanda | 3.0581 NOK |
| RERéunion | 0.6928 NOK |
| KNSaint Kitts og Nevis | 2.6809 NOK |
| PMSaint-Pierre-et-Miquelon | 1.3196 NOK |
| SBSalomonøyene | 0.9237 NOK |
| WSSamoa | 1.5505 NOK |
| SMSan Marino | 0.6158 NOK |
| SASaudi-Arabia | 2.1113 NOK |
| SNSenegal | 2.6062 NOK |
| RSSerbia | 2.1443 NOK |
| SCSeychellene | 1.1876 NOK |
| SLSierra Leone | 2.5732 NOK |
| SGSingapore | 0.5069 NOK |
| SXSint Maarten | 1.0293 NOK |
| SKSlovakia | 0.5586 NOK |
| SISlovenia | 1.7188 NOK |
| SOSomalia | 2.3423 NOK |
| ESSpania | 0.4069 NOK |
| LKSri Lanka | 4.1171 NOK |
| SHSt. Helena | 1.0315 NOK |
| LCSt. Lucia | 2.6062 NOK |
| VCSt. Vincent og Grenadinene | 2.0783 NOK |
| GBStorbritannia | 0.4410 NOK |
| SDSudan | 3.3682 NOK |
| SRSurinam | 2.4082 NOK |
| CHSveits | 0.6532 NOK |
| SESverige | 0.5333 NOK |
| SYSyria | 3.2374 NOK |
| STSão Tomé og Príncipe | 0.2639 NOK |
| ZASør-Afrika | 0.5278 NOK |
| KRSør-Korea | 0.2199 NOK |
| SSSør-Sudan | 2.8866 NOK |
| TJTadsjikistan | 3.9675 NOK |
| TWTaiwan | 0.8247 NOK |
| TZTanzania | 2.9559 NOK |
| THThailand | 0.1924 NOK |
| TGTogo | 1.9134 NOK |
| TKTokelau | 0.2749 NOK |
| TOTonga | 1.8562 NOK |
| TTTrinidad og Tobago | 2.6062 NOK |
| TDTsjad | 3.1956 NOK |
| CZTsjekkia | 0.5443 NOK |
| TNTunisia | 3.1670 NOK |
| TMTurkmenistan | 2.4060 NOK |
| TCTurks- og Caicosøyene | 1.7528 NOK |
| TVTuvalu | 1.7188 NOK |
| TRTyrkia | 0.0836 NOK |
| DETyskland | 0.9578 NOK |
| UGUganda | 3.1065 NOK |
| ZZukjent område | 0.9072 NOK |
| UAUkraina | 1.9244 NOK |
| HUUngarn | 0.7148 NOK |
| UYUruguay | 1.1689 NOK |
| USUSA | 0.2309 NOK |
| UZUsbekistan | 4.2611 NOK |
| VUVanuatu | 1.8144 NOK |
| VEVenezuela | 1.4515 NOK |
| VNVietnam | 2.4401 NOK |
| WFWallis og Futuna | 0.8148 NOK |
| ZMZambia | 2.8800 NOK |
| ZWZimbabwe | 2.0003 NOK |
| TLØst-Timor | 1.6165 NOK |
| ATØsterrike | 0.5718 NOK |
No enabled destination matches that search.
You can still read the complete privacy policy in a new window.