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

# List All Applications

> List all voice applications on your Vobiz account - paginated results with full configuration for each app_id, including webhook URLs and attached numbers.

```http theme={null}
GET https://api.vobiz.ai/api/v1/Account/{auth_id}/Application/
```

Returns details of all applications created under your Vobiz account.

<Info>
  **Authentication required:**

  * `X-Auth-ID` - Your account Auth ID
  * `X-Auth-Token` - Your account Auth Token
  * `Content-Type: application/json`
</Info>

## Parameters

| Field    | Type    | Required | Description                                           |
| -------- | ------- | -------- | ----------------------------------------------------- |
| `limit`  | integer | No       | Number of results per page (max 100). Defaults to 20. |
| `offset` | integer | No       | Number of results to skip. Defaults to 0.             |

## Response Example

```json Success Response (200 OK) theme={null}
{
  "api_id": "aabbccdd-1234-5678-90ab-cdef12345678",
  "meta": {
    "limit": 20,
    "next": "/v1/Account/MA_XXXXXXXX/Application/?limit=20&offset=20",
    "offset": 0,
    "previous": null,
    "total_count": 23
  },
  "objects": [
    {
      "answer_method": "GET",
      "answer_url": "https://example.com/answer",
      "app_id": "12345678901234567",
      "app_name": "My Voice App",
      "application_type": "XML",
      "created_at": "2026-04-02 12:11:19.740666+00:00",
      "default_app": true,
      "default_endpoint_app": false,
      "enabled": true,
      "fallback_answer_url": null,
      "fallback_method": "POST",
      "hangup_method": "POST",
      "hangup_url": "https://example.com/answer",
      "log_incoming_message": true,
      "message_method": "POST",
      "message_url": null,
      "public_uri": false,
      "resource_uri": "/v1/Account/MA_XXXXXXXX/Application/12345678901234567/",
      "sip_transfer_method": "POST",
      "sip_transfer_url": null,
      "sip_uri": "sip:12345678901234567@app.vobiz.ai",
      "sub_account": null,
      "updated_at": "2026-04-02 12:11:19.740666+00:00"
    },
    {
      "answer_method": "POST",
      "answer_url": "https://yourapp.com/ivr/answer",
      "app_id": "23456789012345678",
      "app_name": "Acme Voice Application",
      "application_type": "XML",
      "created_at": "2026-04-17 10:28:50.162012+00:00",
      "default_app": false,
      "default_endpoint_app": false,
      "enabled": true,
      "fallback_answer_url": null,
      "fallback_method": "POST",
      "hangup_method": "POST",
      "hangup_url": "https://yourapp.com/ivr/hangup",
      "log_incoming_message": true,
      "message_method": "POST",
      "message_url": null,
      "public_uri": false,
      "resource_uri": "/v1/Account/MA_XXXXXXXX/Application/23456789012345678/",
      "sip_transfer_method": "POST",
      "sip_transfer_url": null,
      "sip_uri": "sip:23456789012345678@app.vobiz.ai",
      "sub_account": null,
      "updated_at": "2026-04-17 10:28:50.162012+00:00"
    }
  ]
}
```

### cURL Example

```bash cURL theme={null}
curl -X GET "https://api.vobiz.ai/api/v1/Account/{auth_id}/Application/?limit=20&offset=0" \
  -H "X-Auth-ID: YOUR_AUTH_ID" \
  -H "X-Auth-Token: YOUR_AUTH_TOKEN"
```


## OpenAPI

````yaml GET /api/v1/Account/{auth_id}/Application/
openapi: 3.0.3
info:
  title: Vobiz API
  description: >
    The Vobiz API lets you make calls, manage phone numbers, configure SIP
    trunks, 

    and access account data programmatically.


    **Base URL:** `https://api.vobiz.ai`


    **Authentication:** All requests require `X-Auth-ID` and `X-Auth-Token`
    headers.

    Obtain these from your [Vobiz Console](https://console.vobiz.ai).
  version: '1.0'
  contact:
    email: support@vobiz.ai
    url: https://vobiz.ai
servers:
  - url: https://api.vobiz.ai
    description: Production
security:
  - AuthID: []
    AuthToken: []
tags:
  - name: Account
    description: Manage your account details and credentials
  - name: Balance
    description: Retrieve balance and transaction history
  - name: Calls
    description: Make and manage outbound calls
  - name: Live Calls
    description: Retrieve and control in-progress calls
  - name: CDR
    description: Call detail records and history
  - name: Sub-Accounts
    description: Create and manage sub-accounts
  - name: Phone Numbers
    description: Manage phone numbers on your account
  - name: Trunks
    description: Configure SIP trunks for inbound and outbound calling
  - name: Conference
    description: Manage conference calls and members
  - name: Applications
    description: Manage voice and messaging applications with webhook URLs
  - name: Endpoints
    description: Manage SIP endpoints for IP phones, softphones, and SIP clients
  - name: Partner API
    description: >-
      Reseller and white-label endpoints for managing customer sub-accounts,
      balance transfers, transactions, CDRs, and DIDs across your partner
      ecosystem
  - name: Sub-Account KYC
    description: >-
      Per-sub-account KYC verification (PAN, GST, CIN, Aadhaar, DigiLocker) and
      hosted email/redirect KYC sessions. Authenticated as the parent main
      account.
  - name: Sub-Account KYC (Test Mode)
    description: >-
      Mock KYC endpoints that never call the upstream provider. Drive verified /
      failed / pending / error outcomes with magic inputs for integration
      testing.
paths:
  /api/v1/Account/{auth_id}/Application/:
    get:
      tags:
        - Applications
      summary: List All Applications
      description: Get details of all applications created under your Vobiz account.
      operationId: list-applications
      parameters:
        - $ref: '#/components/parameters/AuthId'
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
            maximum: 100
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: List of applications
          content:
            application/json:
              example:
                api_id: aabbccdd-1234-5678-90ab-cdef12345678
                meta:
                  limit: 20
                  next: /v1/Account/MA_XXXXXXXX/Application/?limit=20&offset=20
                  offset: 0
                  previous: null
                  total_count: 23
                objects:
                  - answer_method: POST
                    answer_url: https://example.com/answer
                    app_id: '12345678901234567'
                    app_name: My Voice App
                    application_type: XML
                    created_at: '2026-04-02 12:11:19.740666+00:00'
                    default_app: true
                    default_endpoint_app: false
                    enabled: true
                    fallback_answer_url: null
                    fallback_method: POST
                    hangup_method: POST
                    hangup_url: https://example.com/hangup
                    log_incoming_message: true
                    message_method: POST
                    message_url: null
                    public_uri: false
                    resource_uri: /v1/Account/MA_XXXXXXXX/Application/12345678901234567/
                    sip_transfer_method: POST
                    sip_transfer_url: null
                    sip_uri: sip:12345678901234567@app.vobiz.ai
                    sub_account: null
                    updated_at: '2026-04-02 12:11:19.740666+00:00'
                  - answer_method: POST
                    answer_url: https://example.com/answer
                    app_id: '11223344556677889'
                    app_name: Acme Voice Application
                    application_type: XML
                    created_at: '2026-03-25 09:33:08.869648+00:00'
                    default_app: false
                    default_endpoint_app: false
                    enabled: true
                    fallback_answer_url: null
                    fallback_method: POST
                    hangup_method: POST
                    hangup_url: https://example.com/hangup
                    log_incoming_message: true
                    message_method: POST
                    message_url: null
                    public_uri: false
                    resource_uri: /v1/Account/MA_XXXXXXXX/Application/11223344556677889/
                    sip_transfer_method: POST
                    sip_transfer_url: null
                    sip_uri: sip:11223344556677889@app.vobiz.ai
                    sub_account: null
                    updated_at: '2026-03-25 09:33:08.869648+00:00'
              schema:
                type: object
                properties:
                  api_id:
                    type: string
                  meta:
                    type: object
                    properties:
                      limit:
                        type: integer
                      next:
                        type: string
                      offset:
                        type: integer
                      previous:
                        nullable: true
                      total_count:
                        type: integer
                    required:
                      - limit
                      - next
                      - offset
                      - previous
                      - total_count
                  objects:
                    type: array
                    items:
                      type: object
                      properties:
                        answer_method:
                          type: string
                        answer_url:
                          type: string
                        app_id:
                          type: string
                        app_name:
                          type: string
                        application_type:
                          type: string
                        created_at:
                          type: string
                        default_app:
                          type: boolean
                        default_endpoint_app:
                          type: boolean
                        enabled:
                          type: boolean
                        fallback_answer_url:
                          type: string
                          nullable: true
                        fallback_method:
                          type: string
                        hangup_method:
                          type: string
                        hangup_url:
                          type: string
                        log_incoming_message:
                          type: boolean
                        message_method:
                          type: string
                        message_url:
                          type: string
                          nullable: true
                        public_uri:
                          type: boolean
                        resource_uri:
                          type: string
                        sip_transfer_method:
                          type: string
                        sip_transfer_url:
                          nullable: true
                        sip_uri:
                          type: string
                        sub_account:
                          nullable: true
                        updated_at:
                          type: string
                      required:
                        - answer_method
                        - answer_url
                        - app_id
                        - app_name
                        - application_type
                        - created_at
                        - default_app
                        - default_endpoint_app
                        - enabled
                        - fallback_answer_url
                        - fallback_method
                        - hangup_method
                        - hangup_url
                        - log_incoming_message
                        - message_method
                        - message_url
                        - public_uri
                        - resource_uri
                        - sip_transfer_method
                        - sip_transfer_url
                        - sip_uri
                        - sub_account
                        - updated_at
                required:
                  - api_id
                  - meta
                  - objects
        '401':
          description: Invalid credentials
components:
  parameters:
    AuthId:
      name: auth_id
      in: path
      required: true
      description: Your account Auth ID
      schema:
        type: string
        example: MA_XXXXXX
  securitySchemes:
    AuthID:
      type: apiKey
      in: header
      name: X-Auth-ID
      description: Your Vobiz account Auth ID
    AuthToken:
      type: apiKey
      in: header
      name: X-Auth-Token
      description: Your Vobiz account Auth Token

````