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

Content series detail

Returns a single content series by ID, including its posts, theme, status, and post counts.

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

Parameters

Query

NameTypeRequiredDescription
seriesIdstringrequiredID of the content series.

Headers

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

Request

Request
curl -X GET 'https://api.synup.com/api/v4/social-post-ideas/content-series-detail?seriesId=' \
  -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": {
    "contentSeriesDetail": {
      "id": "string",
      "socialProfileId": "string",
      "name": "string",
      "theme": "string",
      "status": "string",
      "postCount": 0,
      "publishedCount": 0,
      "unpublishedCount": 0,
      "posts": [
        {}
      ],
      "chatSessionId": "string",
      "createdAt": "string",
      "updatedAt": "string"
    }
  }
}

Response body

NameTypeRequiredDescription
dataobjectoptional
data.contentSeriesDetailobjectoptional
data.contentSeriesDetail.idstringoptional
data.contentSeriesDetail.socialProfileIdstringoptional
data.contentSeriesDetail.namestringoptional
data.contentSeriesDetail.themestringoptional
data.contentSeriesDetail.statusstringoptional
data.contentSeriesDetail.postCountintegeroptional
data.contentSeriesDetail.publishedCountintegeroptional
data.contentSeriesDetail.unpublishedCountintegeroptional
data.contentSeriesDetail.postsarray of objectoptionalPosts in the series (see Post idea for the full shape).
data.contentSeriesDetail.chatSessionIdstringoptional
data.contentSeriesDetail.createdAtstringoptional
data.contentSeriesDetail.updatedAtstringoptional