@textbubbles/js
v0.1.0
Published
TypeScript SDK for the TextBubbles messaging API
Maintainers
Readme
@textbubbles/js
TypeScript SDK for the TextBubbles messaging API. Supports iMessage, group chats, contacts, payments, webhooks, and more.
Install
npm install @textbubbles/jsQuick Start
import { TextBubblesClient } from "@textbubbles/js";
const tb = new TextBubblesClient({
apiKey: "your-api-key-here",
});
// Send a message
const message = await tb.messages.send({
to: "+14155551234",
content: { text: "Hello from TextBubbles!" },
});
// Send with effects
await tb.messages.send({
to: "+14155551234",
content: { text: "Congratulations!" },
effect: "confetti",
});AI Agent Skill
This SDK includes an Agent Skill for AI coding assistants like Claude Code and Cursor. The skill makes AI assistants experts at using this SDK.
Claude Code
Add to your project's AGENTS.md or run:
# Copy the skill to your project
cp -r node_modules/@textbubbles/js/skill ./textbubbles-skill
# Or reference it in AGENTS.md
echo "Skill: node_modules/@textbubbles/js/skill/SKILL.md" >> AGENTS.mdCursor
Add to .cursor/rules:
Read and follow the TextBubbles SDK skill at: node_modules/@textbubbles/js/skill/SKILL.mdOr copy skill/SKILL.md content into your .cursorrules file.
What the Skill Provides
- Complete API reference for all SDK methods
- Parameter types and return values
- Code examples for common use cases
- Webhook event handling patterns
- Next.js integration examples
Messages
// Send a message
await tb.messages.send({
to: "+14155551234",
content: { text: "Hello!", media: ["https://example.com/photo.jpg"] },
effect: "confetti",
scheduledAt: "2026-03-29T09:00:00Z",
idempotencyKey: "unique-key",
callbackUrl: "https://example.com/callback",
metadata: { orderId: "123" },
});
// List messages
const messages = await tb.messages.list({
to: "+14155551234",
status: "delivered",
limit: 20,
offset: 0,
});
// Get a message
const msg = await tb.messages.get("msg_abc123");
// Send image carousel (2-20 images)
await tb.messages.sendCarousel({
to: "+14155551234",
images: [
"https://example.com/img1.jpg",
"https://example.com/img2.jpg",
],
});
// List scheduled messages
const scheduled = await tb.messages.listScheduled();
// Cancel a scheduled message
await tb.messages.cancelSchedule("msg_abc123");
// Delete a message
await tb.messages.delete("msg_abc123");
// React to a message
await tb.messages.react("msg_abc123", { reaction: "love" });
// Edit a message
await tb.messages.edit("msg_abc123", {
content: { text: "Updated text" },
});Chats
// Create a group chat
const chat = await tb.chats.create({
name: "Project Team",
participants: ["+14155551234", "+14155555678"],
});
// Get chat details
const chatInfo = await tb.chats.get("chat_guid");
// Rename a chat
await tb.chats.rename("chat_guid", { name: "New Name" });
// Add/remove participants
await tb.chats.addParticipant("chat_guid", { phoneNumber: "+14155559999" });
await tb.chats.removeParticipant("chat_guid", { phoneNumber: "+14155559999" });
// Leave a chat
await tb.chats.leave("chat_guid");
// Mark read/unread
await tb.chats.markRead("chat_guid");
await tb.chats.markUnread("chat_guid");
// Send typing indicator
await tb.chats.sendTyping("chat_guid");Contacts
// Create a contact
const contact = await tb.contacts.create({
firstName: "Jane",
lastName: "Doe",
phoneNumber: "+14155551234",
email: "[email protected]",
tags: ["vip"],
});
// List contacts
const contacts = await tb.contacts.list({
tag: "vip",
search: "Jane",
limit: 50,
});
// Get, update, delete
const c = await tb.contacts.get("contact_id");
await tb.contacts.update("contact_id", { tags: ["vip", "partner"] });
await tb.contacts.delete("contact_id");
// Bulk operations (max 100 contacts)
await tb.contacts.bulkCreate({
contacts: [
{ firstName: "Alice", phoneNumber: "+14155551111" },
{ firstName: "Bob", phoneNumber: "+14155552222" },
],
});
await tb.contacts.bulkDelete({ ids: ["id1", "id2"] });Payment Requests (Apple Cash)
Request payments via iMessage. This sends a formatted message with payment details — the recipient must manually send payment via Apple Cash.
Note: These are payment requests, not actual Apple Pay transactions. We detect when payments are received by pattern-matching incoming iMessages.
// Request a payment (sends formatted iMessage)
const payment = await tb.payments.request({
to: "+14155551234",
amount: 25.0,
currency: "USD",
memo: "Lunch",
});
// List payment requests
const payments = await tb.payments.list();
// Get a specific request
const req = await tb.payments.get("pay_abc123");
// Cancel a pending request (marks as cancelled, fires webhook)
await tb.payments.cancel("pay_abc123");How Payment Detection Works
- You call
payments.request()→ We send a formatted iMessage asking for payment - Recipient manually sends money via Apple Cash
- We detect the incoming "sent you $X" message and match it to your request
- Status updates to
paidandpayment.request.paidwebhook fires
Profile (Name & Photo Sharing)
// Get profile state
const state = await tb.profile.getState();
// Set profile
await tb.profile.set({
name: "John Doe",
displayName: "John",
photo: "https://example.com/photo.jpg",
});
// Delete profile
await tb.profile.delete();Capabilities
// Check if a phone number supports iMessage
const result = await tb.capabilities.check("+14155551234");
console.log(result.iMessage); // true or falseWebhooks
Configuration
// Get current webhook config
const config = await tb.webhooks.get();
// Set webhook config
await tb.webhooks.set({
url: "https://example.com/webhooks/textbubbles",
secret: "whsec_your_secret",
events: ["message.received", "message.delivered"],
});Handling Webhooks
import { verifyWebhookSignature, parseWebhookEvent, isMessageEvent } from "@textbubbles/js/webhooks";
// Verify signature
const isValid = await verifyWebhookSignature(rawBody, signature, secret);
// Parse and handle events
const event = parseWebhookEvent(rawBody);
if (isMessageEvent(event)) {
console.log("Message:", event.data.content.text);
}Next.js Integration
App Router (app/api/webhooks/textbubbles/route.ts):
import { createWebhookHandler } from "@textbubbles/js/nextjs";
const handler = createWebhookHandler({
secret: process.env.TEXTBUBBLES_WEBHOOK_SECRET!,
handlers: {
"message.received": async (event) => {
console.log("New message from:", event.data.from);
},
"message.delivered": async (event) => {
console.log("Message delivered:", event.data.id);
},
"payment.request.paid": async (event) => {
console.log("Payment received:", event.data.amount);
},
},
onError: (err) => console.error("Webhook error:", err),
});
export const POST = handler;Pages Router (pages/api/webhooks/textbubbles.ts):
import { createWebhookHandler } from "@textbubbles/js/nextjs";
export default createWebhookHandler({
secret: process.env.TEXTBUBBLES_WEBHOOK_SECRET!,
handlers: {
"message.received": async (event) => {
console.log("New message:", event.data.content.text);
},
},
});Webhook Event Types
| Event | Description |
|-------|-------------|
| message.sent | Message was sent |
| message.delivered | Message was delivered |
| message.read | Message was read |
| message.failed | Message delivery failed |
| message.received | New message received |
| message.scheduled | Message was scheduled |
| message.schedule_cancelled | Scheduled message cancelled |
| reaction.added | Reaction added to message |
| reaction.removed | Reaction removed from message |
| typing.started | User started typing |
| typing.stopped | User stopped typing |
| payment.request.created | Payment request sent |
| payment.request.paid | Payment detected from recipient |
| payment.request.cancelled | Payment request cancelled |
| payment.request.expired | Payment request expired (30 days) |
| facetime.incoming | Incoming FaceTime call detected |
| facetime.status_changed | FaceTime call status changed |
Error Handling
import {
TextBubblesError,
AuthenticationError,
RateLimitError,
ValidationError,
NotFoundError,
} from "@textbubbles/js";
try {
await tb.messages.send({ to: "+1...", content: { text: "Hi" } });
} catch (err) {
if (err instanceof RateLimitError) {
console.log("Rate limited, retry after:", err.retryAfter, "seconds");
} else if (err instanceof AuthenticationError) {
console.log("Check your API key");
} else if (err instanceof ValidationError) {
console.log("Invalid request:", err.details);
} else if (err instanceof NotFoundError) {
console.log("Resource not found");
} else if (err instanceof TextBubblesError) {
console.log("API error:", err.status, err.message);
}
}TypeScript
All request params and response types are exported:
import type { Message, SendMessageParams, WebhookEvent } from "@textbubbles/js";Requirements
- Node.js 18+ (uses native
fetch) - TypeScript 5.0+ (optional, for type checking)
License
MIT
