WhatsApp Hesabınızı entegre edin.

Resmi WhatsApp Business API'si olmadan ApiUP'un sağladığı altyapıyı kullanarak hesaplarınız üstünden mesaj gönderin. Mesaj başına ücret yok!

apiup.com.tr

Sistem Hakkında

WhatsApp API'mizle entegrasyonun gücünü keşfedin. Kolay bağlantı, sınırsız mesajlaşma ve kusursuz iletişim için tasarlandı.

Hızlı ve Kolay Kurulum

QR kod ile sadece birkaç saniyede WhatsApp hesabınızı bağlayın. Hiçbir teknik bilgi gerektirmeden, hızlıca başlayın.

Sınırsız Mesaj Gönderimi

Mesaj başına ücret ödemeden, sınırsız sayıda mesaj gönderin. Business hesap gerektirmez, herkes kullanabilir.

Güvenilir ve Güvenli

Verileriniz her zaman güvende. End-to-end şifreleme ile güvenli iletişim sağlayın ve gönül rahatlığıyla kullanın.

Sıkça Sorulan Sorular

WhatsApp API entegrasyonu hakkında merak ettikleriniz. Hızlı ve kolay çözümler için doğru yerdesiniz.

1. WhatsApp API'yi nasıl kullanabilirim?

WhatsApp API'yi kullanmak için hesabınızı QR kod ile bağlamanız yeterli. Herhangi bir teknik bilgi gerektirmeden, birkaç adımda entegrasyonu tamamlayabilirsiniz. Kullanım detayları için buraya tıklayabilirsiniz.

2. Mesaj göndermek için ücret ödemem gerekiyor mu?

Hayır, mesaj başına herhangi bir ücret ödemeniz gerekmiyor. Sınırsız mesaj gönderme imkanı ile ekonomik bir çözüm sunuyoruz.

3. Business hesap gerekiyor mu?

Hayır, Business hesap gerektirmeden kişisel WhatsApp hesaplarınızı da kullanabilirsiniz. Her türlü hesap ile uyumludur.

4. Geri ödeme politikası nedir?

Maalesef, hizmetimizde geri ödeme politikası bulunmamaktadır. Satın alma işlemi öncesinde tüm şartları dikkatlice okumanızı öneririz.

ApiUp - Whatsapp/Skype/Telegram Entegrasyonu - En ucuz Vds sunucusu - IRC Botu - Radyo

Ücretlendirme

WhatsApp hesaplarınızı QR kod ile kolayca bağlayın ve sunduğumuz API ile sınırsız mesaj gönderin. Mesaj başına ücret ödemeden, Business hesap gerektirmeden, hızlı ve güvenli bir şekilde iletişim kurun.

Kısa süreli indirim

  • Hesap Sayısı
149 .99
  • Hesap Sayısı 1
Seç
En Popüler
249 .99
  • Hesap Sayısı 2
Seç
499 .99
  • Hesap Sayısı 5
Seç

API Dökümasyonları

API'mizi kullanırken herhangi bir sorunuz veya geri bildiriminiz varsa lütfen bize ulaşın. Güvenli ve etkin API kullanımınızı desteklemek için buradayız!

                                        
<?php
header('Content-Type: application/json');

if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
    http_response_code(405);
    echo json_encode(['error' => 'Method not allowed']);
    exit;
}

$clientId = $_POST['clientId'] ?? '';
$apiKey = $_POST['apiKey'] ?? '';

if (!$clientId || !$apiKey) {
    http_response_code(400);
    echo json_encode(['error' => 'Missing required parameters']);
    exit;
}

$nodeUrl = 'https://api.apiup.com.tr/whatsapp/get_auto_reply';
$postData = json_encode([
    'clientId' => $clientId,
    'apiKey' => $apiKey
]);

$options = [
    'http' => [
        'method' => 'POST',
        'header' => 'Content-Type: application/json',
        'content' => $postData
    ]
];

$context = stream_context_create($options);
$response = file_get_contents($nodeUrl, false, $context);

if ($response === false) {
    http_response_code(500);
    echo json_encode(['error' => 'Failed to send message']);
    exit;
}

echo $response;

?>
                                        
                                    
                                        
<?php
header('Content-Type: application/json');

if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
    http_response_code(405);
    echo json_encode(['error' => 'Method not allowed']);
    exit;
}

$clientId = $_POST['clientId'] ?? '';
$apiKey = $_POST['apiKey'] ?? '';
$phoneNumber = $_POST['phoneNumber'] ?? '';

if (!$clientId || !$apiKey || !$phoneNumber) {
    http_response_code(400);
    echo json_encode(['error' => 'Missing required parameters']);
    exit;
}

$nodeUrl = 'https://api.apiup.com.tr/whatsapp/logout';
$postData = json_encode([
    'clientId' => $clientId,
    'apiKey' => $apiKey,
    'phoneNumber' => $phoneNumber
]);

$options = [
    'http' => [
        'method' => 'POST',
        'header' => 'Content-Type: application/json',
        'content' => $postData
    ]
];

$context = stream_context_create($options);
$response = file_get_contents($nodeUrl, false, $context);

if ($response === false) {
    http_response_code(500);
    echo json_encode(['error' => 'Failed to send message']);
    exit;
}

echo $response;

?>
                                        
                                    
                                        
<?php
header('Content-Type: application/json');

if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
    http_response_code(405);
    echo json_encode(['error' => 'Method not allowed']);
    exit;
}

$clientId = $_POST['clientId'] ?? '';
$apiKey = $_POST['apiKey'] ?? '';
$message = $_POST['message'] ?? '';
$enabled = isset($_POST['enabled']) ? (bool)$_POST['enabled'] : false;

if (!$clientId || !$apiKey || !$message || !$enabled) {
    http_response_code(400);
    echo json_encode(['error' => 'Missing required parameters']);
    exit;
}

$nodeUrl = 'https://api.apiup.com.tr/whatsapp/set-auto-reply';
$postData = json_encode([
    'clientId' => $clientId,
    'apiKey' => $apiKey,
    'message' => $message,
	'enabled' => $enabled
]);

$options = [
    'http' => [
        'method' => 'POST',
        'header' => 'Content-Type: application/json',
        'content' => $postData
    ]
];

$context = stream_context_create($options);
$response = file_get_contents($nodeUrl, false, $context);

if ($response === false) {
    http_response_code(500);
    echo json_encode(['error' => 'Failed to send message']);
    exit;
}

echo $response;

?>
                                        
                                    
                                        
<?php
header('Content-Type: application/json');

if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
    http_response_code(405);
    echo json_encode(['error' => 'Method not allowed']);
    exit;
}

$clientId = $_POST['clientId'] ?? '';
$apiKey = $_POST['apiKey'] ?? '';
$phoneNumber = $_POST['phoneNumber'] ?? '';

if (!$clientId || !$apiKey || !$phoneNumber) {
    http_response_code(400);
    echo json_encode(['error' => 'Missing required parameters']);
    exit;
}

$nodeUrl = 'https://api.apiup.com.tr/whatsapp/stop-session';
$postData = json_encode([
    'clientId' => $clientId,
    'apiKey' => $apiKey,
    'phoneNumber' => $phoneNumber
]);

$options = [
    'http' => [
        'method' => 'POST',
        'header' => 'Content-Type: application/json',
        'content' => $postData
    ]
];

$context = stream_context_create($options);
$response = file_get_contents($nodeUrl, false, $context);

if ($response === false) {
    http_response_code(500);
    echo json_encode(['error' => 'Failed to send message']);
    exit;
}

echo $response;

?>
                                        
                                    
                                        
												<?php
												header('Content-Type: application/json');

												if ($_SERVER['REQUEST_METHOD'] !== 'GET') {
													http_response_code(405);
													echo json_encode(['error' => 'Method not allowed']);
													exit;
												}

												$clientId = $_GET['clientId'] ?? '';
												$apiKey = $_GET['apiKey'] ?? '';

												if (!$clientId || !$apiKey) {
													http_response_code(400);
													echo json_encode(['error' => 'Missing required parameters']);
													exit;
												}

												$url = 'https://api.apiup.com.tr/whatsapp/status?clientId='.$clientId.'&apiKey='.$apiKey;

												$options = [
													'http' => [
														'method' => 'GET',
														'header' => 'Content-Type: application/json'
													]
												];

												$context = stream_context_create($options);
												$response = file_get_contents($url, false, $context);

												if ($response === false) {
													http_response_code(500);
													echo json_encode(['error' => 'Failed to send message']);
													exit;
												}


												echo $response;

												?>
                                        
                                    
                                        
<??php
header('Content-Type: application/json');

if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
    http_response_code(405);
    echo json_encode(['error' => 'Method not allowed']);
    exit;
}

$clientId = $_POST['clientId'] ?? '';
$apiKey = $_POST['apiKey'] ?? '';
$phoneNumber = $_POST['phoneNumber'] ?? '';

if (!$clientId || !$apiKey || !$phoneNumber) {
    http_response_code(400);
    echo json_encode(['error' => 'Missing required parameters']);
    exit;
}

$nodeUrl = 'https://api.apiup.com.tr/whatsapp/start-session';
$postData = json_encode([
    'clientId' => $clientId,
    'apiKey' => $apiKey,
    'phoneNumber' => $phoneNumber
]);

$options = [
    'http' => [
        'method' => 'POST',
        'header' => 'Content-Type: application/json',
        'content' => $postData
    ]
];

$context = stream_context_create($options);
$response = file_get_contents($nodeUrl, false, $context);

if ($response === false) {
    http_response_code(500);
    echo json_encode(['error' => 'Failed to send message']);
    exit;
}

echo $response;

?>
                                        
                                    
										
											<?php
											header('Content-Type: application/json');

											if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
												http_response_code(405);
												echo json_encode(['error' => 'Method not allowed']);
												exit;
											}

											$clientId = $_POST['clientId'] ?? '';
											$apiKey = $_POST['apiKey'] ?? '';
											$targetNumber = $_POST['targetNumber'] ?? '';
											$message = $_POST['message'] ?? '';

											if (!$clientId || !$apiKey || !$targetNumber || !$message) {
												http_response_code(400);
												echo json_encode(['error' => 'Missing required parameters']);
												exit;
											}

											$nodeUrl = 'https://api.apiup.com.tr/whatsapp/send';
											$postData = json_encode([
												'clientId' => $clientId,
												'apiKey' => $apiKey,
												'targetNumber' => $targetNumber,
												'message' => $message
											]);

											$options = [
												'http' => [
													'method' => 'POST',
													'header' => 'Content-Type: application/json',
													'content' => $postData
												]
											];

											$context = stream_context_create($options);
											$response = file_get_contents($nodeUrl, false, $context);

											if ($response === false) {
												http_response_code(500);
												echo json_encode(['error' => 'Failed to send message']);
												exit;
											}

											echo $response;

											?>
										
									

API Özellikleri

İhtiyacınız kadar çok hesap entegre olabilir. Geliştirici odaklı bir hizmet olarak, API'mizle yenilikçi ürünler oluşturmanızı ve pazarlamanızı teşvik ediyoruz. Ne yarattığınızı görmek için heyecanlıyız!

Business hesabına ihtiyacınız yok.

Mesaj göndermek ve almak için bir akıllı telefon ve telefon numarası yeterlidir.

Bütün İstemcilere Entegrasyon

Tüm platformlarla uyumlu eksiksiz entegrasyon sağlayın.

Yüksek Performans & Düşük Gecikme

Hızlı ve kesintisiz mesajlaşma deneyimi için optimize edilmiştir.

Güvenlik & Veri Koruma

Güçlü şifreleme yöntemleriyle verilerinizi koruyun.

Yüksek Trafik & Ölçeklenebilirlik

Yoğun kullanım için özel altyapı ile kesintisiz hizmet.

99.9% Uptime

Kesintisiz bağlantı ile her zaman çevrimiçi olun.

Ekonomik & Uygun Fiyatlar

Bütçe dostu fiyatlandırma seçenekleriyle erişilebilir hizmet.

VIP Destek

Skype ve WhatsApp üzerinden öncelikli destek hizmeti alın.

Uygun Fiyatlar

Sizlere en uygun fiyatlarla yüksek kaliteli hizmet sunuyoruz. Düşük maliyetli çözümler için doğru yerdesiniz!

  • En uygun fiyatlarla kaliteli hizmet
  • Uygun paketler ve esnek ödeme seçenekleri
  • Özel teklifler ve kampanyalar
  • Fiyat-performans oranı yüksek hizmetler
  • Düşük maliyetle yüksek verimlilik
  • En uygun fiyat garantisi
  • Ücretsiz deneme fırsatları
  • Yüksek değer, düşük maliyet
  • Esnek fiyatlandırma seçenekleri
24/7 Destek

Hizmetlerimizle ilgili herhangi bir sorun yaşamamanız için 7/24 müşteri destek ekibimiz yanınızda!

  • 7/24 müşteri desteği
  • Hızlı yanıt süreleri
  • Profesyonel destek ekibi
  • Skype, WhatsApp ve diğer kanallar üzerinden erişim
  • Hızlı çözümler ve problem giderme
  • Her an ulaşabileceğiniz destek ekibi
  • Hızlı çözüm sunma garantisi
  • Özelleştirilmiş destek çözümleri
  • Farklı platformlarda hızlı erişim

WhatsApp paketleri

WhatsApp paketlerimizi incelemeyi unutmayın.

İncele

Sanal sunucu paketleri

Güvenilir, hızlı ve kesintisiz hizmet için doğru adres. VDS çözümlerimizi incelemeyi unutmayın.

İncele

Online radyo paketleri

Profesyonel radyo yayıncılığı için özel çözümlerimizi incelemeyi unutmayın.

İncele