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

# Get the business profile for a phone number



## OpenAPI

````yaml /api-reference/openapi.graph.json get /{version}/{phoneNumberId}/whatsapp_business_profile
openapi: 3.0.3
info:
  title: Polymorfa Graph API
  version: 1.0.0
  description: Meta Cloud API-compatible facade.
servers:
  - url: https://api.polymorfa.com
security: []
paths:
  /{version}/{phoneNumberId}/whatsapp_business_profile:
    get:
      tags:
        - Graph API
      summary: Get the business profile for a phone number
      operationId: graphGetBusinessProfile
      parameters:
        - schema:
            type: string
            example: v21.0
          required: true
          name: version
          in: path
        - schema:
            type: string
            example: '123456789012345'
          required: true
          name: phoneNumberId
          in: path
      responses:
        '200':
          description: Business profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphBusinessProfileResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphError'
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphError'
        '403':
          description: Permission error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphError'
        '404':
          description: Object does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphError'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphError'
        '500':
          description: Internal error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphError'
      security:
        - BearerAuth: []
components:
  schemas:
    GraphBusinessProfileResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/GraphBusinessProfile'
      required:
        - data
    GraphError:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
            type:
              type: string
            code:
              type: number
            error_subcode:
              type: number
            error_data:
              nullable: true
            fbtrace_id:
              type: string
          required:
            - message
            - type
            - code
            - fbtrace_id
      required:
        - error
    GraphBusinessProfile:
      type: object
      properties:
        messaging_product:
          type: string
        about:
          type: string
        address:
          type: string
        description:
          type: string
        email:
          type: string
        profile_picture_url:
          type: string
        websites:
          type: array
          items:
            type: string
        vertical:
          type: string
      required:
        - messaging_product
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Polymorfa organization key (titan_ prefix) or project token (titan_pt_
        prefix). Client tokens are not accepted by Graph operations.

````