# General

General business data endpoints.

## Business data

> Retrieve information about the current authenticated business account.

```json
{"openapi":"3.0.3","info":{"title":"Cekat Open API","version":"1.0.0"},"tags":[{"name":"General","description":"General business data endpoints."}],"servers":[{"url":"https://api.cekat.ai","description":"Production server"},{"url":"http://localhost:3000","description":"Local development server"}],"security":[{"CekatApiKey":[]}],"components":{"securitySchemes":{"CekatApiKey":{"type":"apiKey","in":"header","name":"api_key","description":"Your Cekat API key. Obtain this by calling `POST /register` or from your Cekat dashboard under Settings → API."}}},"paths":{"/businesses":{"get":{"summary":"Business data","tags":["General"],"operationId":"Business_data","description":"Retrieve information about the current authenticated business account.","responses":{"200":{"description":"Business data","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean"},"status_code":{"type":"integer"},"data":{"type":"object","properties":{"id":{"type":"string"},"created_at":{"type":"string"},"name":{"type":"string"},"email":{"type":"string"},"phone_num":{"type":"string"},"package_type":{"type":"string"},"package_start_date":{"type":"string"},"package_exp_date":{"type":"string"},"is_expired":{"type":"boolean"},"total_used_chat_credit_per_month":{"type":"integer"},"chat_credit_topup":{"type":"integer"},"total_used_convo":{"type":"integer"},"convo_credit_topup":{"type":"integer"},"open_api_key":{"type":"string"}}}}}}}},"400":{"description":"Bad request — check required fields and formats."},"401":{"description":"Unauthorized — API key is missing or invalid."},"404":{"description":"Resource not found."}}}}}}
```
