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

# Get server configuration

> Retrieves server configuration information including authentication server URL and SIP server
settings. This public endpoint does not require authentication and provides essential
connectivity information for client initialization.



## OpenAPI

````yaml https://blackbox.dasha.ai/swagger/v1/swagger.json get /api/v1/misc
openapi: 3.0.4
info:
  title: Dasha BlackBox Agent API
  description: API for managing AI agents and calls
  contact:
    name: DashaAI Team
    email: support@dasha.ai
  version: v1
servers:
  - url: https://blackbox.dasha.ai
    description: Dasha BlackBox Agent API
security:
  - ApiKey: []
  - OAuth: []
tags:
  - name: ActivityLogs
  - name: Agents
  - name: AgentTestCases
  - name: CallResults
  - name: Calls
  - name: Chats
  - name: Copilot
  - name: CustomerData
  - name: Mcp
  - name: Media
  - name: Misc
  - name: PronunciationDictionaries
  - name: Providers
  - name: SipAliases
  - name: SipCredentials
  - name: SipPhoneNumbers
  - name: TextChat
  - name: TwilioProvider
  - name: Voice
  - name: WebhookTest
  - name: WebIntegrations
  - name: WebSocket
    description: WebSocket endpoints for real-time communication
paths:
  /api/v1/misc:
    get:
      tags:
        - Misc
      summary: Get server configuration
      description: >-
        Retrieves server configuration information including authentication
        server URL and SIP server

        settings. This public endpoint does not require authentication and
        provides essential

        connectivity information for client initialization.
      responses:
        '200':
          description: Returns server configuration successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MiscResponseDto'
        '500':
          description: Server error occurred while retrieving configuration
components:
  schemas:
    MiscResponseDto:
      type: object
      properties:
        auth:
          type: string
          description: Authentication server URL
          nullable: true
        sipServer:
          type: string
          description: SIP server URI for voice communication
          nullable: true
      additionalProperties: false
      description: Response model for miscellaneous configuration information
  securitySchemes:
    ApiKey:
      type: http
      description: API Key Authentication (Bearer {key})
      scheme: Bearer
    OAuth:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: https://auth.dasha.ai/connect/authorize
          scopes:
            platform_api: Platform API

````