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

Local 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/local-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": {
    "localContentSeriesDetail": {
      "id": "string",
      "locationId": 0,
      "name": "string",
      "theme": "string",
      "status": "string",
      "postCount": 0,
      "publishedCount": 0,
      "unpublishedCount": 0,
      "posts": [
        {}
      ],
      "chatSessionId": "string",
      "createdAt": "string",
      "updatedAt": "string"
    }
  }
}

Response body

NameTypeRequiredDescription
dataobjectoptional
data.localContentSeriesDetailobjectoptional
data.localContentSeriesDetail.idstringoptional
data.localContentSeriesDetail.locationIdintegeroptional
data.localContentSeriesDetail.namestringoptional
data.localContentSeriesDetail.themestringoptional
data.localContentSeriesDetail.statusstringoptional
data.localContentSeriesDetail.postCountintegeroptional
data.localContentSeriesDetail.publishedCountintegeroptional
data.localContentSeriesDetail.unpublishedCountintegeroptional
data.localContentSeriesDetail.postsarray of objectoptionalPosts in the series (see Local post idea for the full shape).
data.localContentSeriesDetail.chatSessionIdstringoptional
data.localContentSeriesDetail.createdAtstringoptional
data.localContentSeriesDetail.updatedAtstringoptional