Webhooks
Webhooks are HTTP requests sent to your server from SignalWire when an event occurs. They help receive information about events like inbound calls to your phone numbers, or messages.
In addition to getting information about events, some webhooks also allow you to tell SignalWire how an event should be handled.
During development, you can use localhost tunneling applications like ngrok to test your webhook handlers locally. See the ngrok quickstart guide to get started.
Configure webhooks for phone numbers
To handle an inbound call or message, you point your phone number at a Resource that holds your webhook URL. When an event arrives, SignalWire requests that URL and your server responds with SWML, the SignalWire Markup Language that tells SignalWire how to handle the call.
What's a Resource?
Resources are the building blocks of SignalWire applications. They include AI Agents, SWML Scripts, cXML Scripts, SIP Endpoints, and more.
Create a Resource for your webhook URL
In the SignalWire Dashboard, open the My Resources tab and click + Add, then choose SWML Script.

Give the script a name, set Handle Calls Using to External URL, and enter your webhook URL in the Primary Script URL field. Click Create to save the Resource.

Assign the Resource to your phone number
Open the Phone Numbers tab and select the number you want to configure.

Click Edit Settings. Under Inbound Call Settings (or Inbound Message Settings for messaging), choose Assign Resource, select the Resource you created, and click Save.

A full walkthrough of connecting a phone number to your application.
How to purchase and manage phone numbers in your SignalWire Space.
Learn how to handle incoming calls and messages from code.
Status callbacks to keep track of events
Status callbacks are asynchronous HTTP requests SignalWire sends to your server as a call, message, or recording moves through its lifecycle, so your application can react to each state change as it happens.
You subscribe to a status callback programmatically: when you create the call or message, provide a callback URL on the relevant SWML method, and SignalWire posts to it each time the state changes. What you set and the states you receive depend on what you’re tracking:
For voice calls, call_state_events defaults to ['ended'] — set it explicitly to also receive created, ringing, and answered.
SignalWire only marks a message Delivered once it receives a Delivery Receipt (DLR) confirming the message reached the end carrier’s network. A status of Sent means the message left SignalWire successfully. MMS messages do not support DLRs, so they only ever show Sent.
The full field reference and status values for outbound message status callbacks.
Receive 10DLC campaign registration status updates via webhooks.
Verify webhook signature
To verify webhooks that originated from SignalWire, SignalWire signs its requests with a digital HMAC security key.
You can verify that the security key matches the key documented in your Dashboard’s API Credentials with the validateRequest method.

This step is not optional!
For production applications, it is extremely important to verify the webhook signature to ensure the requests are coming from SignalWire and not a malicious third party.