> ## Documentation Index
> Fetch the complete documentation index at: https://developer.z-api.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Business account data

> Returns the WhatsApp Business account profile data

## Overview

This method is responsible for returning the WhatsApp Business account profile data, including description, address, email, websites, categories, and business hours.

***

## Attributes

### Header

<ParamField path="instanceId" type="string" required>
  Your instance ID. Available in the Z-API panel under **Instances**.
</ParamField>

<ParamField path="token" type="string" required>
  Your Z-API instance token.
</ParamField>

### Query Parameters

<ParamField query="phone" type="string" required>
  Business account phone number
</ParamField>

***

## Response

### 200

<ResponseField name="description" type="string">
  Company description
</ResponseField>

<ResponseField name="address" type="string">
  Company address
</ResponseField>

<ResponseField name="email" type="string">
  Company email
</ResponseField>

<ResponseField name="websites" type="array">
  Company websites
</ResponseField>

<ResponseField name="categories" type="array">
  Company categories
</ResponseField>

<ResponseField name="businessHours" type="object">
  Business hours
</ResponseField>

<ResponseField name="hasCoverPhoto" type="boolean">
  Indicates whether the account has a cover photo
</ResponseField>

```json theme={"theme":{"light":"github-light","dark":"poimandres"}}
{
  "description": "...",
  "address": "...",
  "email": "...",
  "websites": ["..."],
  "categories": [
    {
      "displayName": "...",
      "label": "...",
      "id": "..."
    }
  ],
  "businessHours": {
    "timezone": "America/Sao_Paulo",
    "days": [
      {
        "dayOfWeek": "MONDAY",
        "openTime": "08:00",
        "closeTime": "18:00"
      }
    ],
    "mode": "specificHours"
  },
  "hasCoverPhoto": false
}
```

### 405

Make sure you are correctly sending the method specification, that is, verify that you sent POST or GET as specified at the beginning of this topic.

### 415

If you receive a 415 error, make sure to add the "Content-Type" header to your request, which in most cases is "application/json".
