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

# Retrieve account settings

> Returns the balance and global limits configured for the authenticated account.



## OpenAPI

````yaml https://wavix.github.io/wavix-openapi/wavix-api.yaml get /v1/profile/config
openapi: 3.1.0
info:
  title: Wavix APIs
  description: >-
    Wavix provides robust APIs that let you integrate voice and text messaging
    features directly into your app. Send text, place calls, and access detailed
    reports  programmatically.
  termsOfService: https://wavix.com/terms-and-conditions
  license:
    name: MIT
    identifier: MIT
  contact:
    name: Wavix
    url: https://wavix.com
    email: support@wavix.com
  version: '1.0'
servers:
  - url: https://api.wavix.com
    description: https://api.wavix.com
    variables: {}
security:
  - bearerAuth: []
tags:
  - name: SIP trunks
    description: SIP trunks
  - name: Buy
    description: Numbers
  - name: Cart
    description: Numbers
  - name: My numbers
    description: Numbers
  - name: Billing
    description: Billing, transactions, and invoices
  - name: Profile
    description: Account profile and customer information
  - name: CDRs
    description: Call detail records and call history
  - name: Speech Analytics
    description: Call transcription and speech analytics
  - name: SMS and MMS
    description: Messaging
  - name: Number Validator
    description: Phone number validation
  - name: Link shortener
    description: Short link and click metrics
  - name: 2FA
    description: Two-factor authentication
  - name: 10DLC
    description: 10DLC Campaigns and Brands
  - name: API Keys
    description: API key management
  - name: Call webhooks
    description: Webhook configuration for call events
  - name: Call control
    description: Programmable Voice
  - name: Call streaming
    description: Real-time call audio streaming over WebSocket
  - name: Call recording
    description: Call recording
  - name: Sub-accounts
    description: Sub-account management
  - name: Voice campaigns
    description: Outbound voice campaigns
  - name: Wavix Embeddable
    description: WebRTC embeddable widget
paths:
  /v1/profile/config:
    get:
      tags:
        - Profile
      summary: Retrieve account settings
      description: >-
        Returns the balance and global limits configured for the authenticated
        account.
      operationId: profile_config_get
      parameters: []
      responses:
        '200':
          description: Returns the account settings.
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ProfileConfigResponse'
                  - example:
                      balance: '309.06'
                      global_limits:
                        max_call_duration: 3600
                        max_sip_channels: 8
                        max_call_rate: '99.0'
              examples:
                default:
                  value:
                    balance: '309.06'
                    global_limits:
                      max_call_duration: 3600
                      max_sip_channels: 8
                      max_call_rate: '99.0'
        '403':
          $ref: '#/components/responses/ForbiddenErrorResponse'
      deprecated: false
      security:
        - bearerAuth:
            - account:read
components:
  schemas:
    ProfileConfigResponse:
      title: ProfileConfigResponse
      required:
        - balance
        - global_limits
      type: object
      additionalProperties: false
      properties:
        balance:
          type: string
          description: Funds available on the account balance, in USD
          example: '100'
        global_limits:
          $ref: '#/components/schemas/AccountLimits'
    AccountLimits:
      title: AccountLimits
      required:
        - max_call_duration
        - max_sip_channels
        - max_call_rate
      type: object
      additionalProperties: false
      properties:
        max_call_duration:
          type: integer
          description: Maximum outbound call duration, in seconds
          format: int32
          example: 3600
        max_sip_channels:
          type: integer
          description: Maximum number of concurrent outbound calls.
          format: int32
          example: 2
        max_call_rate:
          type: string
          description: Maximum outbound call rate, in cents
          example: '0.18'
    ForbiddenErrorResponse:
      title: ForbiddenErrorResponse
      type: object
      properties:
        success:
          type: boolean
          description: >-
            Indicates whether the request was successful. Always `false` for
            this error.
          example: false
        message:
          type: string
          description: Human-readable description of why access is forbidden.
          example: The service is not provisioned for your account.
  responses:
    ForbiddenErrorResponse:
      description: Request failed. The feature is disabled for your account.
      headers: {}
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ForbiddenErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >
        Wavix API key. Pass as `Authorization: Bearer <api_key>`. Keys support
        per-resource scopes (none / read / write). See [Restricted keys and
        scopes](https://docs.wavix.com/api-reference/authentication#restricted-keys-and-scopes).

````