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

# Get business profile

> Retrieve the WhatsApp Business profile information. WhatsApp users can view your business profile by clicking your business's name or number in a WhatsApp message thread.

**Proxy endpoint**: Proxies directly to Meta Graph API.




## OpenAPI

````yaml /api/meta/whatsapp/openapi-whatsapp.yaml get /{phone_number_id}/whatsapp_business_profile
openapi: 3.1.0
info:
  title: Kapso Meta Proxy API
  version: 1.0.0
  description: >
    Kapso's Meta Proxy API provides a unified interface to WhatsApp Business
    Platform with enhanced features and Kapso-specific extensions.


    This API acts as a proxy layer between your application and WhatsApp,
    adding:

    - Simplified authentication with project-level API keys

    - Enhanced message metadata and tracking

    - Conversation management capabilities

    - Voice call integration

    - Extended contact and template management


    ## Base URL


    All API requests are made to: `https://api.kapso.ai/meta/whatsapp/v24.0`


    ## Authentication


    The API supports authentication via **X-API-Key header** (recommended):


    ```

    X-API-Key: your_project_api_key

    ```


    Alternative: Bearer token authentication is also supported for backward
    compatibility:


    ```

    Authorization: Bearer your_access_token

    ```


    Note: X-API-Key is the recommended authentication method for the Meta Proxy
    API.
  contact:
    name: Kapso Support
    url: https://kapso.ai
    email: dev@kap.so
servers:
  - url: https://api.kapso.ai/meta/whatsapp/v24.0
    description: Production server
security:
  - ApiKeyAuth: []
  - BearerAuth: []
tags:
  - name: Messages
    description: Send and retrieve WhatsApp messages
  - name: Conversations
    description: Manage WhatsApp conversations
  - name: Contacts
    description: Manage WhatsApp contacts
  - name: Templates
    description: Manage message templates
  - name: Media
    description: Upload and retrieve media files
  - name: Calls
    description: Manage voice calls
  - name: Settings
    description: Account settings and configuration
  - name: Business Profile
    description: Business profile management
  - name: Phone Numbers
    description: Phone number management
  - name: Flows
    description: WhatsApp Flow management (Beta)
  - name: Block Users
    description: Block and unblock WhatsApp users
  - name: Usernames
    description: Reserve and manage WhatsApp business usernames
paths:
  /{phone_number_id}/whatsapp_business_profile:
    parameters:
      - name: phone_number_id
        in: path
        required: true
        description: WhatsApp Business Phone Number ID
        schema:
          type: string
        example: '110987654321'
    get:
      tags:
        - Business Profile
      summary: Get business profile
      description: >
        Retrieve the WhatsApp Business profile information. WhatsApp users can
        view your business profile by clicking your business's name or number in
        a WhatsApp message thread.


        **Proxy endpoint**: Proxies directly to Meta Graph API.
      operationId: getBusinessProfile
      parameters:
        - name: fields
          in: query
          required: false
          description: Comma-separated list of fields to retrieve
          schema:
            type: string
          example: >-
            about,address,description,email,profile_picture_url,websites,vertical
      responses:
        '200':
          description: Profile retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        about:
                          type: string
                          description: >-
                            The business's About text (1-139 characters).
                            Appears in profile beneath profile image and phone
                            number.
                          minLength: 1
                          maxLength: 139
                        address:
                          type: string
                          description: Address of the business
                          maxLength: 256
                        description:
                          type: string
                          description: Description of the business
                          maxLength: 512
                        email:
                          type: string
                          format: email
                          description: Contact email address of the business
                          maxLength: 128
                        messaging_product:
                          type: string
                          description: Messaging service (always "whatsapp")
                          enum:
                            - whatsapp
                        profile_picture_url:
                          type: string
                          format: uri
                          description: URL of the profile picture (read-only)
                          readOnly: true
                        websites:
                          type: array
                          description: >-
                            URLs associated with the business (max 2 websites,
                            256 chars each)
                          maxItems: 2
                          items:
                            type: string
                            format: uri
                            maxLength: 256
                        vertical:
                          type: string
                          description: Business industry category
                          enum:
                            - ALCOHOL
                            - APPAREL
                            - AUTO
                            - BEAUTY
                            - EDU
                            - ENTERTAIN
                            - EVENT_PLAN
                            - FINANCE
                            - GROCERY
                            - GOVT
                            - HOTEL
                            - HEALTH
                            - NONPROFIT
                            - ONLINE_GAMBLING
                            - OTC_DRUGS
                            - OTHER
                            - PHYSICAL_GAMBLING
                            - PROF_SERVICES
                            - RESTAURANT
                            - RETAIL
                            - TRAVEL
              example:
                data:
                  - about: Premium coffee roasters since 2010
                    address: 123 Main St, San Francisco, CA 94102
                    description: >-
                      Specialty coffee beans sourced directly from sustainable
                      farms
                    email: hello@premiumcoffee.com
                    messaging_product: whatsapp
                    profile_picture_url: >-
                      https://lookaside.fbsbx.com/whatsapp_business/attachments/?mid=...
                    websites:
                      - https://premiumcoffee.com
                      - https://instagram.com/premiumcoffee
                    vertical: RETAIL
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
            - type
            - code
          properties:
            message:
              type: string
              description: Human-readable error message
              example: Invalid phone number format
            type:
              type: string
              description: Error category
              example: OAuthException
            code:
              type: integer
              description: Error code
              example: 400
            error_subcode:
              type: integer
              description: More specific error code
              example: 1001
            fbtrace_id:
              type: string
              description: Facebook trace ID for debugging
              example: AXk7s_8dR4eVHp9Kq2MmNlO
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >
        Project API key for authentication. This is the recommended
        authentication method.


        Get your API key from the Kapso dashboard under Integrations > API keys.
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |
        Bearer token authentication (alternative method).

        Note: X-API-Key authentication is recommended for the Meta Proxy API.

````