Programmable voice, SMS, and messaging
Build communication workflows with Twilio's voice, SMS, and WhatsApp APIs. Request access through our concierge service.
Use Twilio through Keystore with zero code changes. Keys are resolved from the vault and injected at request time.
import Keystore from "@keystore/sdk";
const ks = new Keystore({ agentToken: process.env.KS_TOKEN! });
ks.interceptAll();
// Twilio API calls are proxied through Keystore
const res = await fetch(
"https://api.twilio.com/2010-04-01/Accounts/AC.../Messages.json",
{
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: new URLSearchParams({
To: "+1234567890",
From: "+0987654321",
Body: "Hello from your agent!",
}),
}
);Request access and our concierge team will provision credentials for you — usually within 24 hours. No setup on your end.
Request Access