> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Sip Trunks

> List all SIP inbound trunks from LiveKit.

Returns trunk details including:
- Trunk ID and name
- Phone numbers on each trunk
- Allowed addresses (IP allowlist)
- Authentication status

Use this to see what's configured in LiveKit.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /agents/sip/list-trunks
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /agents/sip/list-trunks:
    get:
      tags:
        - agent-phone-numbers
      summary: List Sip Trunks
      description: |-
        List all SIP inbound trunks from LiveKit.

        Returns trunk details including:
        - Trunk ID and name
        - Phone numbers on each trunk
        - Allowed addresses (IP allowlist)
        - Authentication status

        Use this to see what's configured in LiveKit.
      operationId: list_sip_trunks_agents_sip_list_trunks_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response List Sip Trunks Agents Sip List Trunks Get
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````