> ## Documentation Index
> Fetch the complete documentation index at: https://developers.senderz.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get brand

> Retrieve details and verification status of a brand entity.

**Required permission:** `brands:read`

## Path parameters

<ParamField path="brand_id" type="string" required>
  The brand ID (e.g. `brand_f6g7h8i9`).
</ParamField>

## Example

```bash theme={null}
curl https://api.senderz.ai/v1/brands/brand_f6g7h8i9 \
  -H "Authorization: Bearer sz_live_xxxxxxxxxxxxx"
```

## Response

<ResponseExample>
  ```json 200 theme={null}
  {
    "ok": true,
    "data": {
      "id": "brand_f6g7h8i9",
      "name": "TrackFast Logistics Pty Ltd",
      "identifier_type": "ABN",
      "identifier_value": "12345678901",
      "market": "AU",
      "status": "verified",
      "contact": {
        "name": "Sarah Chen",
        "email": "sarah@trackfast.com.au",
        "phone": "+61400123456"
      },
      "website": "https://trackfast.com.au",
      "created_at": "2026-07-17T14:30:00+10:00"
    },
    "meta": {
      "request_id": "req_pqr678",
      "timestamp": "2026-07-17T14:35:00+10:00"
    }
  }
  ```
</ResponseExample>
