
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@unlimited-messaging/sdk
Advanced tools
TypeScript / Node.js SDK for the Unlimited Messaging API — send and receive WhatsApp messages programmatically
Official TypeScript / Node.js client for the Unlimited Messaging API — send and receive WhatsApp messages programmatically.
npm install @unlimited-messaging/sdk
import { UnlimitedMessagingApiClient } from "@unlimited-messaging/sdk";
const client = new UnlimitedMessagingApiClient({
token: process.env.API_TOKEN,
});
// Send a WhatsApp message
const message = await client.message.send({
recipient: "+33612345678",
text: "Hello!",
});
console.log(message.id, message.status);
Get your API token from the dashboard and pass it as the token option.
const client = new UnlimitedMessagingApiClient({
token: "your_api_token",
});
const message = await client.message.send({
recipient: "+33612345678",
text: "Hello from the SDK!",
simId: "optional-sim-id", // force a specific SIM
});
const result = await client.message.findAll({
page: 1,
limit: 20,
status: "DELIVERED", // PENDING | SENDING | SENT | DELIVERED | READ | FAILED
search: "keyword",
});
console.log(`${result.total} messages`);
for (const msg of result.data) {
console.log(msg.id, msg.status, msg.text);
}
const msg = await client.message.findOne("message-id");
console.log(msg.id, msg.status, msg.text);
const sims = await client.sim.getLinkedSims();
for (const sim of sims) {
console.log(sim.id, sim.phoneNumber);
}
| Method | Description |
|---|---|
message.send | Send a WhatsApp message |
message.findAll | List messages with pagination and filters |
message.findOne | Get a single message by ID |
sim.getLinkedSims | List linked SIMs |
Official documentation: docs.unlimitedmessaging.app
Full OpenAPI spec: openapi.yaml
FAQs
TypeScript / Node.js SDK for the Unlimited Messaging API — send and receive WhatsApp messages programmatically
The npm package @unlimited-messaging/sdk receives a total of 167 weekly downloads. As such, @unlimited-messaging/sdk popularity was classified as not popular.
We found that @unlimited-messaging/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.