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

# Get business profile

> Fetches the WhatsApp Business profile (category, description, email, website) of a number.



## OpenAPI

````yaml openapi.evolution-v2.json POST /chat/fetchBusinessProfile/{instance}
openapi: 3.1.0
info:
  title: Evolution V2 Layer
  version: 1.0.0
  description: >-
    Pilot Status API Layer — Evolution V2. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-v2`. Authenticate with the
    `apikey` header (your Pilot Status `ps_` key). Instance/session endpoints
    are NOT available through the layer.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-v2
security:
  - apiKey: []
tags:
  - name: Call & Business
  - name: Chat
  - name: Group
  - name: Label
  - name: Message
  - name: Profile
  - name: Settings & Proxy
  - name: Storage (S3)
  - name: Template
paths:
  /chat/fetchBusinessProfile/{instance}:
    post:
      tags:
        - Profile
      summary: Get business profile
      description: >-
        Fetches the WhatsApp Business profile (category, description, email,
        website) of a number.
      operationId: post__chat_fetchBusinessProfile_instance
      parameters:
        - name: instance
          in: path
          required: true
          schema:
            type: string
          description: The number's display name in the Pilot Status dashboard.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                number:
                  type: string
                  description: Phone number or JID of the business account to inspect.
                  example: '5511999999999'
              required:
                - number
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  WhatsApp Business profile. When the number is a business
                  account isBusiness=true and the business fields are populated;
                  otherwise isBusiness=false with the on-WhatsApp check fields.
                properties:
                  isBusiness:
                    type: boolean
                    description: Whether the number is a WhatsApp Business account.
                  wid:
                    type: string
                    description: WhatsApp business ID (JID).
                  jid:
                    type: string
                    description: >-
                      WhatsApp JID (present in the non-business branch, from the
                      on-WhatsApp check).
                  exists:
                    type: boolean
                    description: >-
                      Whether the number exists on WhatsApp (present in the
                      non-business branch).
                  name:
                    type: string
                    description: Contact/pushname (present in the non-business branch).
                  message:
                    type: string
                    description: >-
                      Explanatory message when the number is not a business
                      profile.
                  description:
                    type: string
                    description: Business description / about text.
                  email:
                    type: string
                    description: Business contact email.
                  websites:
                    type: array
                    items:
                      type: string
                    description: Business website URLs (raw Baileys field).
                  website:
                    type: array
                    items:
                      type: string
                    description: Business website URLs.
                  address:
                    type: string
                    description: Business physical address.
                  about:
                    type: string
                    description: Business about text.
                  vertical:
                    type: string
                    description: Business category/vertical.
                  profilehandle:
                    type: string
                    description: Business profile handle.
                required:
                  - isBusiness
              example:
                isBusiness: true
                wid: 5511999999999@s.whatsapp.net
                description: Official store — fast delivery across Brazil.
                email: contact@acmestore.com.br
                websites:
                  - https://acmestore.com.br
                website:
                  - https://acmestore.com.br
                address: Av. Paulista, 1000 - Sao Paulo, SP
                about: We sell quality products since 2015.
                vertical: RETAIL
                profilehandle: acmestore
        default:
          description: Error — provider or layer error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                  response:
                    type: object
              example:
                status: 400
                error: Bad Request
                message: Invalid payload
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Your Pilot Status API key (ps_...). Evolution GO also accepts
        `Authorization: Bearer <key>`.

````