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
  • Core
    • Overview
    • Authorization
    • Base URL
    • Data formats
    • Paging
    • Error codes
    • Permissions
  • Calling
  • Datasphere
  • Logs
  • Messaging
  • Phone Number Management
  • Platform
  • Resource Management
      • POSTAssign Resource to SIP credential
      • POSTCreate SIP credential
      • DELDelete SIP credential
      • GETGet SIP credential
      • GETList SIP credential Addresses
      • GETList SIP credentials
      • PUTUpdate SIP credential
LogoLogoSignalWire Docs
Log inSign up
Support
Resource ManagementSIP Credentials

List SIP credentials

|View as Markdown|Open in Claude|
GET
https://{your_space_name}.signalwire.com/api/fabric/resources/sip_endpoints
GET
/api/fabric/resources/sip_endpoints
$curl https://{your_space_name}.signalwire.com/api/fabric/resources/sip_endpoints \
> -u "<project_id>:<api_token>"
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]
A list of SIP Credentials #### Permissions The API token used to authenticate must have the following scope(s) enabled to make a successful request: _Voice_, _Messaging_, _Fax_, or _Video_. [Learn more about API scopes](/docs/platform/your-signalwire-api-space).
Was this page helpful?
Previous

Update SIP credential

Next
Built with

A list of SIP Credentials

Permissions

The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice, Messaging, Fax, or Video.

Learn more about API scopes.

Authentication

AuthorizationBasic

SignalWire Basic Authentication using Project ID and API Token.

The client sends HTTP requests with the Authorization header containing the word Basic followed by a space and a base64-encoded string of project_id:token. The project ID will be used as the username and the API token as the password.

Example:

Authorization: Basic base64(project_id:token)

Response

The request has succeeded.
linksobject
Pagination links.
datalist of objects
List of SIP endpoints.

Errors

401
Unauthorized Error
404
Not Found Error
500
Internal Server Error