Appearance
Business profiles
Updated: Jun 30, 2026
Your business phone number's profile displays additional information such as address, website, and description. You can add this information when you register your phone number. You can also update the profile later via WhatsApp Manager or the API.

View or update your profile in WhatsApp Manager
To view or update your business profile via WhatsApp Manager:
- Navigate to WhatsApp Manager > Account tools > Phone numbers.
- Select your business phone number.
- Click the Profile tab to view your current profile.
- Use the form to set new profile values.
Get your profile via the API
Before you call the API, make sure you have a business phone number ID and a system user access token with the required permissions.
Use the WhatsApp Business Profile API to get specific business profile fields:
Example request
curl 'https://graph.facebook.com/v25.0/106540352242922/whatsapp_business_profile?fields=about,address,description,email,profile_picture_url,websites,vertical' \
-H 'Authorization: Bearer EAAJB...'Example response
Upon success:
{
"data": [
{
"about": "Succulent specialists!",
"address": "1 Hacker Way, Menlo Park, CA 94025",
"description": "At Lucky Shrub, we specialize in providing a...",
"email": "lucky@luckyshrub.com",
"profile_picture_url": "https://pps.whatsapp.net/v/t61.24...",
"websites": [
"https://www.luckyshrub.com/"
],
"vertical": "RETAIL",
"messaging_product": "whatsapp"
}
]
}Update your profile via the API
Use the WhatsApp Business Profile API to update specific business profile fields:
Example request
curl 'https://graph.facebook.com/v25.0/106540352242922/whatsapp_business_profile' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer EAAJB...' \
--data-raw '
{
"about": "Succulent specialists!",
"address": "1 Hacker Way, Menlo Park, CA 94025",
"description": "At Lucky Shrub, we specialize in providing a diverse range of high-quality succulents to suit your needs. From rare and exotic varieties to timeless classics, our collection has something for everyone.",
"email": "lucky@luckyshrub.com",
"messaging_product": "whatsapp",
"profile_picture_handle": "4::aW...",
"websites": "[\n \"https://www.luckyshrub.com\"\n]"
}'Example response
Upon success:
{
"success": true
}Field notes
These notes describe behavior for specific writable fields in the WhatsApp Business Profile API.
- The
verticalfield can be updated via POST. TheWhatsAppVerticalenum defines the valid values (excludingUNDEFINEDandNOT_A_BIZ). You can also change this value using WhatsApp Manager. - The
addressfield accepts freeform text (maximum 256 characters) and does not validate against any geographic database.