www.smsgatewayapi.at Open in urlscan Pro
195.81.120.224  Public Scan

Submitted URL: https://smsgatewayapi.at/
Effective URL: https://www.smsgatewayapi.at/
Submission: On March 01 via automatic, source certstream-suspicious — Scanned from FR

Form analysis 1 forms found in the DOM

POST https://www.smsgatewayapi.at/de/register

<form method="post" class="row g-3 justify-content-center" id="0" action="https://www.smsgatewayapi.at/de/register" enctype="multipart/form-data">
  <div class="col-auto d-none d-sm-none d-md-block d-lg-block">
    <label class="visually-hidden" for="Reg-email">Email*</label>
    <input type="email" name="email1" id="Reg-email" class="form-control" placeholder="Email*">
  </div>
  <div class="col-12 d-block d-sm-block d-md-none d-lg-none w-100">
    <label class="visually-hidden" for="Reg-email-mobile">Email*</label>
    <input type="email" name="email2" id="Reg-email-mobile" class="form-control mb-0" placeholder="Email*">
  </div>
  <div class="col-auto d-none d-sm-none d-md-block d-lg-block">
    <button type="submit" class="btn btn-default registerbtn" id="RegHomeBtn0">REGISTRIEREN <span></span></button>
  </div>
  <div class="col-12 d-block d-sm-block d-md-none d-lg-none w-100">
    <button type="submit" class="btn btn-default w-100 registerbtn" id="RegHomeBtn10">REGISTRIEREN <span></span></button>
  </div>
  <div id="invalid0" class="" style="display:none; text-align: left;  font-size: 11px;   margin-top: 5px;">Email is invalid.</div>
  <div id="exists0" class="" style="display:none; text-align: left;  font-size: 11px;   margin-top: 5px;">Diese Email-Adresse ist bereits registriert.</div>
</form>

Text Content

 * API Docs
 * Zapier
 * Preise
 * Über uns
   * Warum smstools?
   * Service level agreement (sla)
 * Kontakt
   * Kontakt
   * Angebot anfordern
 * Starte kostenlos
 * Anmelden

 * 

 * API Docs
 * Zapier
 * Preise
 * Über uns
   * Warum smstools?
   * Über uns
 * Kontakt


 * 
 * 

© 2023 Alle Rechte vorbehalten, Smstools.




SMS GATEWAY
SMS API FÜR ENTWICKLER




STARTE KOSTENLOS ANGEBOT ANFORDERN


Integrieren Sie unsere SMS Gateway API über Ihre bevorzugte Programmiersprache
und senden oder empfangen Sie SMS-Nachrichten direkt von Ihrer eigenen
Anwendung, Website oder Software. Unsere SMS Gateway API ist äußerst zuverlässig
und einfach zu integrieren.

Senden und empfangen Sie SMS-Nachrichten sofort weltweit über unsere SMS-API und
empfangen Sie Webhooks mit Statusberichten. Darüber hinaus haben wir auch
unzählige weitere Integrationen wie 'E-Mail to SMS', Zapier, Whatsapp, Slack,
etc.


WELTWEIT BEKANNTE UNTERNEHMEN, MIT DENEN WIR EFFEKTIV ZUSAMMENARBEITEN

 * 
 * 
 * 
 * 
 * 


SENDEN SIE SMS-NACHRICHTEN WELTWEIT ÜBER UNSERE SMS GATEWAY

Smstools ist ein benutzerfreundliches und vielseitiges SMS Gateway zum Senden
und/oder Empfangen von SMS-Nachrichten! Unsere SMS API bietet umfangreiche
Möglichkeiten zum SMS-Versand über unser SMS-Gateway, zugeschnitten auf große
und kleine Unternehmen.




ARBEITEN SIE MIT EINEM VERLÄSSLICHEN PARTNER

Seit seiner Gründung im Jahr 2004 hat sich Smstools zu einem der Marktführer für
Massen-SMS-Versand über webbasierte Softwareanwendungen entwickelt.

Warum smstools? Über uns
PHP Node Ruby Python C# Powershell Shell

<?php
	$ch = curl_init();
	$url = "https://api.smsgatewayapi.com/v1/message/send";
	$client_id = "XXX"; // Your API key
	$client_secret = "YYY"; // Your API secret
	$data = [
		'message' => "example", //Message
		'to' => "", //Receiver
		'sender' => "YourName" //Sender
	];
	curl_setopt($ch, CURLOPT_URL, "$url");
	curl_setopt($ch, CURLOPT_POST, true);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
	curl_setopt($ch, CURLOPT_VERBOSE, true);
	curl_setopt($ch, CURLOPT_HTTPHEADER, [
		"X-Client-Id: $client_id",
		"X-Client-Secret: $client_secret",
		"Content-Type: application/json",
	]);
	curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
	$response = curl_exec($ch);
?>

const https = require("https");
const client_id = "XXX"; // Your API key
const client_secret = "YYY"; // Your API secret
const data = JSON.stringify({
    message: "Hallo", //Message (required)
    to: "", //Receiver (required)
    sender: "YourName", //Sender (required)
});
const options = {
    hostname: "api.smsgatewayapi.com",
    port: 443,
    path: "/v1/message/send",
    method: "POST",
    headers: {
        "X-Client-Id": client_id,
        "X-Client-Secret": client_secret,
        "Content-Type": "application/json",
        "Content-Length": data.length,
    },
};
const req = https.request(options, (res) => {
    console.log(`statusCode: ${res.statusCode}`);
    res.on("data", (d) => {
        process.stdout.write(d);
    });
});
req.write(data);
req.end();


require "uri"
require "net/http"

url = URI("https://api.smsgatewayapi.com/v1/message/send")

https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true

request = Net::HTTP::Post.new(url)
request["X-Client-Id"] = "XXX" // Your API key
request["X-Client-Secret"] = "YYY" // Your API secret
request["Content-Type"] = "application/json"
form_data = [
	['message', 'example'], //Message (required)
	['to', ''], //Receiver (required)
	['sender', 'YourName'] //Sender (required)
] 
request.set_form form_data, 'multipart/form-data'
response = https.request(request)
puts response.read_body


import requests

url = "https://api.smsgatewayapi.com/v1/message/send"

payload={
	'message': 'example', #Message (required)
	'to': '32479123456', #Receiver (required)
	'sender': 'YourName' #Sender (required)
}
headers = {
	'X-Client-Id': 'XXX', #Your API key
	'X-Client-Secret': 'YYY', #Your API secret
	'Content-Type': 'application/json'
}

response = requests.request(
	"POST", 
	url, 
	headers=headers, 
	json=payload
)

print(response.text)


var url = "https://api.smsgatewayapi.com/v1/message/send";
var client = new RestClient(url);
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("X-Client-Id", "XXX"); // Your API key
request.AddHeader("X-Client-Secret", "YYY"); // Your API secret
request.AddHeader("Content-Type", "application/json");
request.AlwaysMultipartFormData = true;
request.AddParameter("message", "example"); //Message (required)
request.AddParameter("to", "32479123456"); //Receiver (required)
request.AddParameter("sender", "YourName"); //Sender (required)
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);


//PowerShell - RestMethod
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("X-Client-Id", "XXX") // Your API key
$headers.Add("X-Client-Secret", "YYY") // Your API secret
$headers.Add("Content-Type", "application/json")

$body = "{
`n    `"to`": `"`",
`n    `"message`": `"Hello World`",
`n    `"sender`": `"YourName`"
`n}"

$response = Invoke-RestMethod 'https://api.smsgatewayapi.com/v1/message/send' -Method 'POST' -Headers $headers -Body $body
$response | ConvertTo-Json


//Shell - wget
wget --no-check-certificate --quiet \
  --method POST \
  --timeout=0 \
  --header 'X-Client-Id: XXX' \ // Your API key
  --header 'X-Client-Secret: YYY' \ // Your API secret
  --header 'Content-Type: application/json' \
  --body-data '{
    "to": "",
    "message": "Hello World",
    "sender": "YourName"
}' \
   'https://api.smsgatewayapi.com/v1/message/send'



EINFACHE INTEGRATION

Durch die einfache Integration unserer SMS-API haben Sie so viel Flexibilität
wie möglich und können Ihre Software durch SMS-Integrationen erweitern. Die
Integration unserer SMS-API ist sehr einfach, sodass Sie Ihre Website oder
Software schnell mit unserer leistungsstarken SMS-Plattform verbinden können.

API Dokumentation


DIE ALLGEMEINE DATENSCHUTZ-GRUNDVERORDNUNG (DSGVO) UND BETRIEBSZEIT GARANTIERT.

Wir arbeiten mit hohen Sicherheitsstandards. Mit Smstools entspricht die
Datensicherheit von Ihnen und Ihren Kunden den 100% igen DSGVO-Anforderungen.
Zusätzlich garantieren wir eine Verfügbarkeit von 99,99%




DIE INTEGRATION EINER SMS GATEWAY API IST SUPER EINFACH

Starten Sie noch heute und senden Sie SMS über unsere SMS API.

Email*
Email*
REGISTRIEREN
REGISTRIEREN
Email is invalid.
Diese Email-Adresse ist bereits registriert.
System Anmeldung Über uns Api dokumentation Kontakt


ENTDECKEN SIE

 * System anmeldung
 * Über uns
 * Api dokumentation
 * Kontakt


Language Nederlands (België) Nederlands (Nederland) English Deutsch
(Deutschland) Français (France) Français (Belgique)


UNSER TEAM BEANTWORTET GERNE IHRE FRAGEN ZU PRODUKTEN, FUNKTIONEN UND
INTEGRATION.

 * ALLGEMEINE FRAGEN

 * info@smstools.at

 * VERKAUFSFRAGEN

 * sales@smstools.at

 * SUPPORT-FRAGEN

 * support@smstools.at


UNSER TEAM BEANTWORTET GERNE IHRE FRAGEN ZU PRODUKTEN, FUNKTIONEN UND
INTEGRATION.

 * ALLGEMEINE FRAGEN

 * info@smstools.at

 * VERKAUFSFRAGEN

 * sales@smstools.at

 * SUPPORT-FRAGEN

 * support@smstools.at


Language Nederlands (België) Nederlands (Nederland) English Deutsch
(Deutschland) Français (France) Français (Belgique)

© 2023 Alle Rechte vorbehalten, Smstools.

 * Terms&Conditions
 * Acceptable Use Policy
 * Privacy Policy
 * Sitemap

© 2023 Alle Rechte vorbehalten, Smstools.

 * Terms&Conditions
 * •
 * Acceptable Use Policy
 * •
 * Privacy Policy
 * •
 * Sitemap