Skip to content
SynupAPI
Get an API key
POSTapi.synup.com/api/v4/social/brands

Create a brand

Requires an API key. Send it as Authorization: API <your-key> — see Getting started.

Parameters

Headers

NameTypeRequiredDescription
Content-Typestringrequired

Body

NameTypeRequiredDescription
inputobjectrequired
input.namestringrequired
input.businessIntentstringrequired
input.categoriesarray of stringrequired
input.websitestringrequired
input.phonestringrequired
input.descriptionstringrequired

Request

Request
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

StatusDescription
200
Example response (generated from the schema)
{}