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

Calendar

Returns the content calendar for a brand (social profile) — each day with its scheduled/suggested post ideas.

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/calendar?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": {
    "calendar": [
      {
        "day": 0,
        "posts": [
          {}
        ]
      }
    ]
  }
}

Response body

NameTypeRequiredDescription
dataobjectoptional
data.calendararray of objectoptional
data.calendar[].dayintegeroptional
data.calendar[].postsarray of objectoptionalPost ideas for the day (see Post idea for the full shape).