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

# Get info about the current WhatsApp cost of sending messages. Any surcharge is already included.

> Pricing, markets and calling codes are based on WhatsApp official rate card: https://developers.facebook.com/docs/whatsapp/pricing




## OpenAPI

````yaml /openapi/chat-client.yaml get /support/whatsapp-pricing
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /support/whatsapp-pricing:
    get:
      tags:
        - support
      summary: >-
        Get info about the current WhatsApp cost of sending messages. Any
        surcharge is already included.
      description: >
        Pricing, markets and calling codes are based on WhatsApp official rate
        card: https://developers.facebook.com/docs/whatsapp/pricing
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      pricing:
                        type: array
                        items:
                          type: object
                          properties:
                            market:
                              type: string
                              example: Germany
                            currency:
                              type: string
                              example: €
                            marketing:
                              description: Price in currency of marketing message.
                              type: number
                              nullable: true
                              example: 0.1131
                            utility:
                              description: Price in currency of utility message.
                              type: number
                              nullable: true
                              example: 0.0456
                            authentication:
                              description: Price in currency of authentication message.
                              type: number
                              nullable: true
                              example: 0.0456
                            authentication_international:
                              description: Price in currency of authentication message.
                              type: number
                              nullable: true
                            service:
                              description: Price in currency of service message.
                              type: number
                              nullable: true
                      calling_codes:
                        description: >
                          Mapping of country/region to calling code. See market
                          of pricing array for matching values.
                        type: array
                        items:
                          type: object
                          properties:
                            country:
                              type: string
                              example: Germany
                            region:
                              type: string
                              nullable: true
                              example: null
                            calling_code:
                              type: string
                              example: 49
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````