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

Local content series list

Returns the content series for a location — multi-post campaigns with a shared theme, including post counts and status.

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

Parameters

Query

NameTypeRequiredDescription
locationIdstringrequiredRelay-encoded location ID.

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-list?locationId=' \
  -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": {
    "localContentSeriesList": [
      {
        "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.localContentSeriesListarray of objectoptional
data.localContentSeriesList[].idstringoptional
data.localContentSeriesList[].locationIdintegeroptional
data.localContentSeriesList[].namestringoptional
data.localContentSeriesList[].themestringoptional
data.localContentSeriesList[].statusstringoptional
data.localContentSeriesList[].postCountintegeroptional
data.localContentSeriesList[].publishedCountintegeroptional
data.localContentSeriesList[].unpublishedCountintegeroptional
data.localContentSeriesList[].postsarray of objectoptionalPosts in the series (see Local post idea for the full shape).
data.localContentSeriesList[].chatSessionIdstringoptional
data.localContentSeriesList[].createdAtstringoptional
data.localContentSeriesList[].updatedAtstringoptional