Skip to content
SynupAPI
Get an API key
GETapi.synup.com/api/v4/social-post-ideas/brand-info

Brand info

Returns the basic brand profile for a social profile — name, site URL, categories, and country — used to ground social post-idea generation.

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

Parameters

Query

NameTypeRequiredDescription
socialProfileIdstringrequiredSocial profile ID.

Headers

NameTypeRequiredDescription
Synup-VersionstringrequiredAPI version date (YYYY-MM-DD).

Request

Request
curl -X GET 'https://api.synup.com/api/v4/social-post-ideas/brand-info?socialProfileId=' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json'

Responses

StatusDescription
200Successful response
401Unauthorized - Invalid or missing API key
Example response (generated from the schema)
{
  "data": {
    "brandInfo": {
      "id": "string",
      "name": "string",
      "siteUrl": "string",
      "categories": [
        "string"
      ],
      "country": "string"
    }
  }
}

Response body

NameTypeRequiredDescription
dataobjectoptional
data.brandInfoobjectoptional
data.brandInfo.idstringoptional
data.brandInfo.namestringoptional
data.brandInfo.siteUrlstringoptional
data.brandInfo.categoriesarray of stringoptional
data.brandInfo.countrystringoptional