Send with confidence
Submit outbound SMS through a documented API with recipient and message validation before it enters the delivery queue.
Domäner, säkerhet, prestanda och uppkopplade tjänster för de system som ditt företag är beroende av.
Utforska alla tjänster →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.7765 SEK |
| ALAlbanien | 1.2094 SEK |
| DZAlgeriet | 3.0757 SEK |
| VIAmerikanska Jungfruöarna | 0.4053 SEK |
| ASAmerikanska Samoa | 1.2907 SEK |
| ADAndorra | 0.9150 SEK |
| AOAngola | 0.8568 SEK |
| AIAnguilla | 1.7795 SEK |
| AGAntigua och Barbuda | 2.4386 SEK |
| ARArgentina | 0.9952 SEK |
| AMArmenien | 2.3342 SEK |
| AWAruba | 1.4500 SEK |
| AUAustralien | 0.3328 SEK |
| AZAzerbajdzjan | 3.4140 SEK |
| BSBahamas | 0.8030 SEK |
| BHBahrain | 0.4613 SEK |
| BDBangladesh | 5.0463 SEK |
| BBBarbados | 2.6780 SEK |
| BYBelarus | 1.9366 SEK |
| BEBelgien | 0.8897 SEK |
| BZBelize | 2.2859 SEK |
| BJBenin | 2.4375 SEK |
| BMBermuda | 2.6780 SEK |
| BTBhutan | 3.4327 SEK |
| BOBolivia | 2.2738 SEK |
| BABosnien och Hercegovina | 1.5488 SEK |
| BWBotswana | 1.4423 SEK |
| BRBrasilien | 0.2757 SEK |
| VGBrittiska Jungfruöarna | 2.6780 SEK |
| IOBrittiska territoriet i Indiska oceanen | 1.2522 SEK |
| BNBrunei | 0.6184 SEK |
| BGBulgarien | 1.5104 SEK |
| BFBurkina Faso | 2.0102 SEK |
| BIBurundi | 4.3499 SEK |
| KYCaymanöarna | 2.4715 SEK |
| CFCentralafrikanska republiken | 0.9557 SEK |
| CLChile | 0.4493 SEK |
| COColombia | 0.2065 SEK |
| CKCooköarna | 1.2445 SEK |
| CRCosta Rica | 0.3021 SEK |
| ANCuraçao | 1.3181 SEK |
| CWCuraçao | 3.0207 SEK |
| CYCypern | 1.0644 SEK |
| DKDanmark | 0.5064 SEK |
| DJDjibouti | 1.2852 SEK |
| DMDominica | 2.0761 SEK |
| DODominikanska republiken | 1.3247 SEK |
| ECEcuador | 2.8670 SEK |
| EGEgypten | 3.0647 SEK |
| GQEkvatorialguinea | 1.9772 SEK |
| SVEl Salvador | 1.2522 SEK |
| CIElfenbenskusten | 2.8010 SEK |
| EREritrea | 1.0205 SEK |
| EEEstland | 0.5152 SEK |
| SZEswatini | 1.6806 SEK |
| ETEtiopien | 3.0207 SEK |
| FKFalklandsöarna | 0.7184 SEK |
| FJFiji | 1.8542 SEK |
| PHFilippinerna | 2.3276 SEK |
| FIFinland | 0.4613 SEK |
| FRFrankrike | 0.5426 SEK |
| GFFranska Guyana | 0.5888 SEK |
| PFFranska Polynesien | 0.8843 SEK |
| FOFäröarna | 0.5251 SEK |
| AEFörenade Arabemiraten | 1.0029 SEK |
| GAGabon | 2.9526 SEK |
| GMGambia | 1.7169 SEK |
| GEGeorgien | 1.3247 SEK |
| GHGhana | 2.4056 SEK |
| GIGibraltar | 0.7008 SEK |
| GRGrekland | 0.4789 SEK |
| GDGrenada | 2.4715 SEK |
| GLGrönland | 0.1241 SEK |
| GPGuadeloupe | 1.2193 SEK |
| GUGuam | 1.3511 SEK |
| GTGuatemala | 2.1420 SEK |
| GNGuinea | 2.6363 SEK |
| GWGuinea-Bissau | 2.4386 SEK |
| GYGuyana | 2.6363 SEK |
| HTHaiti | 2.6780 SEK |
| HNHonduras | 1.4500 SEK |
| HKHongkong SAR | 0.6162 SEK |
| INIndien | 0.8183 SEK |
| IDIndonesien | 4.4268 SEK |
| IQIrak | 3.6941 SEK |
| IRIran | 3.7567 SEK |
| IEIrland | 0.4613 SEK |
| ISIsland | 0.6931 SEK |
| ILIsrael | 2.1969 SEK |
| ITItalien | 0.5251 SEK |
| JMJamaica | 1.3115 SEK |
| JPJapan | 0.5547 SEK |
| YEJemen | 1.8948 SEK |
| JOJordanien | 3.4272 SEK |
| KHKambodja | 3.2954 SEK |
| CMKamerun | 2.7022 SEK |
| CAKanada | 0.2307 SEK |
| CVKap Verde | 2.0936 SEK |
| KZKazakstan | 3.7073 SEK |
| KEKenya | 1.3181 SEK |
| CNKina | 0.2614 SEK |
| KGKirgizistan | 2.8219 SEK |
| KIKiribati | 0.5591 SEK |
| KMKomorerna | 3.4931 SEK |
| CGKongo-Brazzaville | 2.1420 SEK |
| CDKongo-Kinshasa | 3.0317 SEK |
| XKKosovo | 2.7461 SEK |
| HRKroatien | 1.4225 SEK |
| CUKuba | 0.8996 SEK |
| KWKuwait | 3.1580 SEK |
| LALaos | 1.3840 SEK |
| LSLesotho | 2.6033 SEK |
| LVLettland | 0.5492 SEK |
| LBLibanon | 0.5273 SEK |
| LRLiberia | 1.9772 SEK |
| LYLibyen | 3.5019 SEK |
| LILiechtenstein | 0.4383 SEK |
| LTLitauen | 0.4460 SEK |
| LULuxemburg | 1.1204 SEK |
| MOMacao SAR | 0.4833 SEK |
| MGMadagaskar | 4.2905 SEK |
| MWMalawi | 2.8834 SEK |
| MYMalaysia | 1.6477 SEK |
| MVMaldiverna | 0.6920 SEK |
| MLMali | 2.3397 SEK |
| MTMalta | 0.6020 SEK |
| MAMarocko | 0.7909 SEK |
| MHMarshallöarna | 0.6184 SEK |
| MQMartinique | 0.5492 SEK |
| MRMauretanien | 2.5045 SEK |
| MUMauritius | 1.6971 SEK |
| MXMexiko | 0.7909 SEK |
| FMMikronesien | 0.8107 SEK |
| MDMoldavien | 1.4642 SEK |
| MCMonaco | 1.4434 SEK |
| MNMongoliet | 3.2272 SEK |
| MEMontenegro | 1.5796 SEK |
| MSMontserrat | 1.3840 SEK |
| MZMoçambique | 1.3840 SEK |
| MMMyanmar (Burma) | 4.0511 SEK |
| NANamibia | 0.4657 SEK |
| NRNauru | 1.8542 SEK |
| NLNederländerna | 0.8381 SEK |
| NPNepal | 2.7022 SEK |
| NINicaragua | 1.2852 SEK |
| NENiger | 3.0899 SEK |
| NGNigeria | 3.6908 SEK |
| NUNiue | 1.7850 SEK |
| KPNordkorea | 0.9216 SEK |
| MKNordmakedonien | 0.9677 SEK |
| NONorge | 0.3954 SEK |
| NCNya Kaledonien | 1.3028 SEK |
| NZNya Zeeland | 0.4613 SEK |
| ZZokänd region | 0.9062 SEK |
| OMOman | 1.9223 SEK |
| PKPakistan | 3.9544 SEK |
| PWPalau | 1.2577 SEK |
| PSPalestinska territorierna | 3.2470 SEK |
| PAPanama | 1.6147 SEK |
| PGPapua Nya Guinea | 2.1288 SEK |
| PYParaguay | 0.9227 SEK |
| PEPeru | 1.3840 SEK |
| PLPolen | 0.2746 SEK |
| PTPortugal | 0.2889 SEK |
| PRPuerto Rico | 1.1479 SEK |
| QAQatar | 1.1534 SEK |
| RORumänien | 0.5086 SEK |
| RWRwanda | 3.0548 SEK |
| RURyssland | 4.4355 SEK |
| RERéunion | 0.6920 SEK |
| SHS:t Helena | 1.0303 SEK |
| KNS:t Kitts och Nevis | 2.6780 SEK |
| LCS:t Lucia | 2.6033 SEK |
| PMS:t Pierre och Miquelon | 1.3181 SEK |
| VCS:t Vincent och Grenadinerna | 2.0761 SEK |
| SBSalomonöarna | 0.9227 SEK |
| WSSamoa | 1.5488 SEK |
| SMSan Marino | 0.6151 SEK |
| SASaudiarabien | 2.1090 SEK |
| CHSchweiz | 0.6525 SEK |
| SNSenegal | 2.6033 SEK |
| RSSerbien | 2.1420 SEK |
| SCSeychellerna | 1.1863 SEK |
| SLSierra Leone | 2.5704 SEK |
| SGSingapore | 0.5064 SEK |
| SXSint Maarten | 1.0281 SEK |
| SKSlovakien | 0.5580 SEK |
| SISlovenien | 1.7169 SEK |
| SOSomalia | 2.3397 SEK |
| ESSpanien | 0.4064 SEK |
| LKSri Lanka | 4.1126 SEK |
| GBStorbritannien | 0.4405 SEK |
| SDSudan | 3.3646 SEK |
| SRSurinam | 2.4056 SEK |
| SESverige | 0.5327 SEK |
| ZASydafrika | 0.5273 SEK |
| KRSydkorea | 0.2197 SEK |
| SSSydsudan | 2.8834 SEK |
| SYSyrien | 3.2338 SEK |
| STSão Tomé och Príncipe | 0.2636 SEK |
| TJTadzjikistan | 3.9632 SEK |
| TWTaiwan | 0.8238 SEK |
| TZTanzania | 2.9526 SEK |
| TDTchad | 3.1921 SEK |
| THThailand | 0.1922 SEK |
| CZTjeckien | 0.5437 SEK |
| TGTogo | 1.9113 SEK |
| TKTokelauöarna | 0.2746 SEK |
| TOTonga | 1.8542 SEK |
| TTTrinidad och Tobago | 2.6033 SEK |
| TNTunisien | 3.1635 SEK |
| TRTurkiet | 0.0835 SEK |
| TMTurkmenistan | 2.4034 SEK |
| TCTurks- och Caicosöarna | 1.7509 SEK |
| TVTuvalu | 1.7169 SEK |
| DETyskland | 0.9567 SEK |
| UGUganda | 3.1031 SEK |
| UAUkraina | 1.9223 SEK |
| HUUngern | 0.7140 SEK |
| UYUruguay | 1.1677 SEK |
| USUSA | 0.2307 SEK |
| UZUzbekistan | 4.2565 SEK |
| VUVanuatu | 1.8124 SEK |
| VEVenezuela | 1.4500 SEK |
| VNVietnam | 2.4375 SEK |
| WFWallis- och Futunaöarna | 0.8140 SEK |
| ZMZambia | 2.8768 SEK |
| ZWZimbabwe | 1.9981 SEK |
| ATÖsterrike | 0.5712 SEK |
| TLÖsttimor | 1.6147 SEK |
No enabled destination matches that search.
You can still read the complete privacy policy in a new window.