# Create a brand

```http
POST https://api.synup.com/api/v4/social/brands
```

Source: https://developer.synup.com/api/social/create-a-brand

## Header parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `Content-Type` | string | required |  |

## Request body

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `input` | object | required |  |
| `input.name` | string | required |  |
| `input.businessIntent` | string | required |  |
| `input.categories` | array of string | required |  |
| `input.website` | string | required |  |
| `input.phone` | string | required |  |
| `input.description` | string | required |  |

## Example request

```bash
curl -X POST 'https://api.synup.com/api/v4/social/brands' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "input": {
    "name": "Acme Coffee Co.",
    "businessIntent": "LOCAL_BUSINESS",
    "categories": [
      "FOOD_AND_BEVERAGE",
      "CAFE"
    ],
    "website": "https://acmecoffee.com",
    "phone": "+1-555-000-1234",
    "description": "Specialty coffee roasters since 2010"
  }
}'
```

## Responses

| Status | Description |
| --- | --- |
| `200` |  |
