> ## 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 a profile

> Returns the profile and billing details of the authenticated account.



## OpenAPI

````yaml https://wavix.github.io/wavix-openapi/wavix-api.yaml get /v1/profile
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:
    get:
      tags:
        - Profile
      summary: Retrieve a profile
      description: Returns the profile and billing details of the authenticated account.
      operationId: profile_get
      parameters: []
      responses:
        '200':
          description: Returns the profile.
          headers: {}
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ProfileResponse'
              examples:
                success:
                  summary: Successful response
                  value:
                    id: 1
                    email: info@awesome.com
                    first_name: example
                    last_name: example
                    phone: '+12025550123'
                    additional_info: example
                    contact_email: example
                    timezone: example
                    job_title: example
                    default_short_link_endpoint: example
                    default_destinations:
                      - transport: example
                        value: example
                    company_info:
                      name: example
                      industry: telecommunications
                      address: example
                      attn_contact_name: example
                      vat_number: example
                      country:
                        country_name: example
                        country_id: 123
        '403':
          $ref: '#/components/responses/ForbiddenErrorResponse'
      deprecated: false
      security:
        - bearerAuth:
            - account:read
components:
  schemas:
    ProfileResponse:
      title: ProfileResponse
      required:
        - id
        - email
        - first_name
        - last_name
        - phone
        - additional_info
        - contact_email
        - timezone
        - job_title
        - default_short_link_endpoint
        - default_destinations
        - company_info
      type: object
      additionalProperties: false
      properties:
        id:
          type: integer
          description: Account ID.
          format: int32
          example: 1
        email:
          type: string
          description: Email associated with the account.
          example: info@awesome.com
        first_name:
          type:
            - string
            - 'null'
          description: Account owner's first name.
          example: Jason
        last_name:
          type:
            - string
            - 'null'
          description: Account owner's last name.
          example: Androux
        phone:
          type:
            - string
            - 'null'
          description: Account owner's phone number.
          example: '13291019312'
        additional_info:
          type:
            - string
            - 'null'
          description: Additional info associated with the account.
          example: Additional info
        contact_email:
          type:
            - string
            - 'null'
          description: Additional email address for billing notifications.
          example: billing@awesome.com
        timezone:
          type: string
          description: Timezone configured on the account.
          example: Pacific/Wallis
        job_title:
          type:
            - string
            - 'null'
          description: Account owner's job title.
          example: Manager
        default_short_link_endpoint:
          type:
            - string
            - 'null'
          description: Default short link endpoint.
          example: https://short.examples.com
        default_destinations:
          type: array
          items:
            type: object
            additionalProperties: false
            properties:
              transport:
                type: string
                description: Transport type.
                example: sms
              value:
                type: string
                description: Destination value
                example: https://webhook.address.com/inboundSMS
          description: Default destinations configured for the account.
          example:
            - transport: sms
              value: https://webhook.address.com/inboundSMS
        company_info:
          type:
            - object
            - 'null'
          additionalProperties: false
          description: Company details.
          properties:
            name:
              type:
                - string
                - 'null'
              description: Company name.
              example: Awesome company
            industry:
              type:
                - string
                - 'null'
              enum:
                - telecommunications
                - information technology and services
                - fintech and finance
                - healthcare and pharmaceuticals
                - ecommerce and retail
                - education and research
                - pickup and delivery
                - transportation and logistics
                - media and entertainment
                - travel and hospitality
                - non-profit and charity organizations
                - manufacturing and industrial goods
                - other
                - null
              description: >-
                Industry the company operates in. One of `telecommunications`,
                `information technology and services`, `fintech and finance`,
                `healthcare and pharmaceuticals`, `ecommerce and retail`,
                `education and research`, `pickup and delivery`, `transportation
                and logistics`, `media and entertainment`, `travel and
                hospitality`, `non-profit and charity organizations`,
                `manufacturing and industrial goods`, or `other`. Each value
                names the company's sector. `null` when the industry is not set.
              example: telecommunications
            address:
              type:
                - string
                - 'null'
              description: Company address.
              example: Baker street
            attn_contact_name:
              type:
                - string
                - 'null'
              description: Billing contact name.
              example: James Scott
            vat_number:
              type:
                - string
                - 'null'
              description: VAT number.
              example: VAT123456789
            country:
              type: object
              additionalProperties: false
              description: Country.
              properties:
                country_name:
                  type:
                    - string
                    - 'null'
                  description: Country name.
                  example: United States
                country_id:
                  type:
                    - integer
                    - 'null'
                  description: Country ID.
                  example: 1
    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).

````