Skip to main content
GET
/
api
/
v1
/
businesses
/
{business_id}
Get a business
curl --request GET \
  --url https://api.izap.ai/api/v1/businesses/{business_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "6a1f2e2e-1c34-4e2a-9c3e-1234567890ab",
  "business_name": "Gás na Promoção",
  "industry": "retail",
  "hours": [
    {
      "day_of_week": 1,
      "open_time": "08:00",
      "close_time": "18:00"
    }
  ],
  "menus": [],
  "chatbot": {
    "id": "b2c3d4e5-1234-4a5b-9c8d-abcdef123456",
    "name": "Assistente",
    "is_active": true
  }
}

Authorizations

Authorization
string
header
required

JWT access token obtained from POST /api/v1/auth/jwt/login, the OAuth token endpoint, or a business-scoped API token. Some Business/Chat/Template/Scheduling endpoints alternatively accept HTTP Basic credentials scoped to the business slug.

Path Parameters

business_id
string<uuid>
required

Response

The business.

id
string<uuid>
business_name
string
industry
string | null
hours
object[]
menus
object[]
chatbot
object | null