Getting Started
/
Overview
Skyden Send API
Skyden Send is a provider-agnostic WhatsApp messaging API. Send text, images, documents, and templated messages with a single HTTP call.
What you can do
- Send text messages to any WhatsApp number
- Send images and documents via URL or upload
- Use pre-configured templates for common scenarios
- Receive webhooks for delivery, read, and failure events
- Handle multiple WhatsApp connections per project
Quick start
The fastest way to send your first message:
curl -X POST https://skyden.kiloconnectrdc.com/api/v1/messages \
-H 'Authorization: Bearer sks_live_xxxxx' \
-H 'Content-Type: application/json' \
-d '{
"to": "243812345678",
"type": "text",
"content": { "text": "Hello from Skyden Send!" }
}'
<?php
require 'vendor/autoload.php';
use Skyden\Send\SkydenSend;
SkydenSend::config('sks_live_xxxxx');
SkydenSend::to('+243812345678')->send('Hello from Skyden Send!');
import { SkydenSend } from 'skyden-send';
SkydenSend.config('sks_live_xxxxx');
await SkydenSend.to('+243812345678').send('Hello from Skyden Send!');