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

Series posts

Returns the posts belonging to a content series. Each item is a post idea (see Post idea for the full shape).

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

Parameters

Query

NameTypeRequiredDescription
socialProfileIdstringrequiredSocial profile ID.
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/series-posts?socialProfileId=&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": {
    "seriesPosts": [
      {}
    ]
  }
}

Response body

NameTypeRequiredDescription
dataobjectoptional
data.seriesPostsarray of objectoptionalPosts in the series (see Post idea for the full shape).