For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
GuidesReference
GuidesReference
    • Core
      • Overview
    • Agents
      • Overview
      • AgentBase
      • AgentServer
      • BedrockAgent
      • CLI Tools
      • Configuration
      • ContextBuilder
      • DataMap
      • FunctionResult
      • Helper Functions
      • LiveWire
      • MCP Gateway
      • PomBuilder
      • Prefabs
      • Search
      • SkillBase
      • Skills
      • SWAIGFunction
      • SWMLBuilder
      • SWMLService
      • WebService
    • RELAY
      • Overview
      • Actions
      • Call
      • Constants
      • Events
      • Message
      • RelayClient
      • RelayError
    • REST Client
      • Overview
      • Addresses
      • Calling
      • Chat
      • Compat
      • Datasphere
      • Fabric
        • Addresses
        • AI Agents
        • Call Flows
        • Conference Rooms
        • cXML Applications
        • cXML Scripts
        • cXML Webhooks
        • FreeSWITCH Connectors
        • RELAY Applications
        • Resources
        • SIP Endpoints
          • create
          • delete
          • get
          • list
          • list_addresses
          • update
        • SIP Gateways
        • Subscribers
        • SWML Scripts
        • SWML Webhooks
        • Tokens
      • Imported Numbers
      • Logs
      • Lookup
      • MFA
      • Number Groups
      • Phone Numbers
      • Project
      • PubSub
      • Queues
      • Recordings
      • Registry
      • RestClient
      • Short Codes
      • SignalWireRestError
      • SIP Profile
      • Verified Callers
      • Video
LogoLogoSignalWire Docs
Log inSign up
Support
On this page
  • Response Example
  • Example
REST ClientFabricSIP Endpoints

list

|View as Markdown|Open in Claude|
Was this page helpful?
Edit this page
Previous

list_addresses

Next
Built with

List SIP endpoint resources in the project.

Response

linksobjectRequired
Pagination links.
datalist of objectsRequired
List of SIP endpoints.

Response Example

Response
1[
2 {
3 "links": {
4 "self": "string",
5 "first": "string",
6 "next": "string",
7 "prev": "string"
8 },
9 "data": [
10 {
11 "type": "sip_endpoint",
12 "id": "67075301-69b2-4fc3-8a2c-c95a69a5665e",
13 "username": "c3p0",
14 "caller_id": "C-3P0",
15 "send_as": "random",
16 "ciphers": [
17 "string"
18 ],
19 "codecs": [
20 "string"
21 ],
22 "encryption": "required",
23 "call_handler": "ai_agent",
24 "calling_handler_resource_id": "fe4093d9-58c2-4931-b4b9-5679f82652c6",
25 "call_request_url": "string",
26 "call_request_method": "POST",
27 "call_fallback_url": "string",
28 "call_fallback_method": "POST",
29 "call_status_callback_url": "string",
30 "call_status_callback_method": "POST",
31 "call_laml_application_id": "string",
32 "call_dialogflow_agent_id": "string",
33 "call_relay_topic": "office",
34 "call_relay_topic_status_callback_url": "https://myapplication/handle_relay_callbacks",
35 "call_relay_context": "string",
36 "call_relay_context_status_callback_url": "https://myapplication/handle_relay_callbacks",
37 "call_relay_application": "string",
38 "call_video_room_id": "string",
39 "call_relay_script_url": "https://dev.signalwire.com/relay-bins/f9d13f68-f71e-4042-95bb-b07b9e2f2f92"
40 }
41 ]
42 }
43]

Example

1from signalwire.rest import RestClient
2
3client = RestClient(
4 project="your-project-id",
5 token="your-api-token",
6 host="your-space.signalwire.com",
7)
8
9response = client.fabric.sip_endpoints.list()
10for endpoint in response.get("data", []):
11 print(f"{endpoint['name']}: {endpoint['id']}")