Server SDKs
Build AI agents, control calls, send messages, and more
Get the underlying Hono application instance for mounting into an existing application or for testing purposes.
None.
Hono — The configured Hono application with CORS, security headers, basic auth (if configured), and SWML-serving routes.
Hono
1import { SWMLService } from '@signalwire/sdk';23const service = new SWMLService({ name: 'my-ivr' });4service.addVerb('answer', {});5service.addVerb('hangup', {});67const app = service.getApp();8// Mount into another Hono app, or use for testing