GETapi.synup.com/api/v4/social-post-ideas/extended-brand-config
Extended brand config
Returns the extended generation config for a social profile — brand tone, target customers, contact/address, brand colors and logos, and the services/products/content-rules used to ground social post-idea generation.
Requires an API key. Send it as
Authorization: API <your-key> — see Getting started.Parameters
Query
| Name | Type | Required | Description |
|---|---|---|---|
socialProfileId | string | required | Social profile ID. |
Headers
| Name | Type | Required | Description |
|---|---|---|---|
Synup-Version | string | required | API version date (YYYY-MM-DD). |
Request
Request
curl -X GET 'https://api.synup.com/api/v4/social-post-ideas/extended-brand-config?socialProfileId=' \
-H 'Authorization: API YOUR_API_KEY' \
-H 'Content-Type: application/json'const res = await fetch('https://api.synup.com/api/v4/social-post-ideas/extended-brand-config?socialProfileId=', {
method: 'GET',
headers: {
Authorization: 'API YOUR_API_KEY',
'Content-Type': 'application/json',
},
});
const data = await res.json();import requests
res = requests.get(
"https://api.synup.com/api/v4/social-post-ideas/extended-brand-config?socialProfileId=",
headers={
"Authorization": "API YOUR_API_KEY",
"Content-Type": "application/json",
},
)
data = res.json()req, _ := http.NewRequest("GET", "https://api.synup.com/api/v4/social-post-ideas/extended-brand-config?socialProfileId=", nil)
req.Header.Set("Authorization", "API YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
res, err := http.DefaultClient.Do(req)Responses
| Status | Description |
|---|---|
200 | Successful response |
401 | Unauthorized - Invalid or missing API key |
Example response (generated from the schema)
{
"data": {
"extendedBrandConfig": {
"id": "string",
"socialProfileId": "string",
"tone": "string",
"targetCustomers": "string",
"country": "string",
"phone": "string",
"address": "string",
"location": "string",
"primaryColor": "string",
"secondaryColor": "string",
"logoLight": "string",
"logoDark": "string",
"services": {},
"products": {},
"contentRules": {},
"additionalContext": "string",
"insights": {}
}
}
}Response body
| Name | Type | Required | Description |
|---|---|---|---|
data | object | optional | |
data.extendedBrandConfig | object | optional | |
data.extendedBrandConfig.id | string | optional | |
data.extendedBrandConfig.socialProfileId | string | optional | |
data.extendedBrandConfig.tone | string | optional | |
data.extendedBrandConfig.targetCustomers | string | optional | |
data.extendedBrandConfig.country | string | optional | |
data.extendedBrandConfig.phone | string | optional | |
data.extendedBrandConfig.address | string | optional | |
data.extendedBrandConfig.location | string | optional | |
data.extendedBrandConfig.primaryColor | string | optional | |
data.extendedBrandConfig.secondaryColor | string | optional | |
data.extendedBrandConfig.logoLight | string | optional | |
data.extendedBrandConfig.logoDark | string | optional | |
data.extendedBrandConfig.services | object | optional | Free-form JSON. |
data.extendedBrandConfig.products | object | optional | Free-form JSON. |
data.extendedBrandConfig.contentRules | object | optional | Free-form JSON. |
data.extendedBrandConfig.additionalContext | string | optional | |
data.extendedBrandConfig.insights | object | optional | Free-form JSON. |