Zintegruj usługi SMS w swoim oprogramowaniu, osadzając nasz przyjazny dla użytkownika interfejs SMS API
Od marketingu do integracji CRM do komunikacji z pracownikiami, nasza usługa SMS API poradzi sobie ze wszystkim. Jeśli potrafisz to sobie wyobrazić, nasz SMS API może to zrealizować. Poznaj spokój umysłu z naszą gwarancją 99,99% sprawności. Uzyskaj dostęp do funkcji Smstools z poziomu własnej platformy lub aplikacji.
REJESTRACJA
					




<?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' => "Hello World", //Message 'to' => "48123457890", //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: "Hello World", //Message (required)
    to: "48123457890", //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', 'Hello World'], //Message (required)
	['to', '48123457890'], //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': 'Hello World', #Message (required)
	'to': '48123457890', #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 payload = new {
	message = "Hello World",
	to = "48123457890",
	sender = "YourName"
};
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.RequestFormat = DataFormat.Json;
request.AddJsonBody(payload);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
							Nasze API jest zorganizowane wokół REST. Wykorzystuje standardowe kody odpowiedzi HTTP i uwierzytelnianie. Jeśli chcesz uzyskać dostęp do naszego API, zarejestruj się na konto próbne
Dokumentacja APIMożesz również zaoferować nasze usługi jako odsprzedawca White Label dla swoich klientów.
ZOSTAŃ ODSPRZEDAWCĄ
					Użyj naszej SMS API i połącz swoją platformę z naszą gateway SMS, która pozwala na wysyłanie wiadomości SMS z Twojego własnego oprogramowania.
Dokonaj zakupu wirtualnego numeru komórkowego lub hostingu SIM, aby otrzymywać wiadomości SMS w swoim oprogramowaniu.
Zarejestruj się już dziś i wyślij swoją pierwszą wiadomość w ciągu kilku minut.