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
| Name | Type | Required | Description |
|---|---|---|---|
seriesId | string | required | ID of the content series. |
Headers
| Name | Type | Required | Description |
|---|---|---|---|
Synup-Version | string | required | API 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'const res = await fetch('https://api.synup.com/api/v4/social-post-ideas/content-series-detail?seriesId=', {
method: 'GET',
headers: {
Authorization: 'API YOUR_API_KEY',
'Content-Type': 'application/json',
},
});
const data = await res.json();import requests
res = requests.get(
"https://api.synup.com/api/v4/social-post-ideas/content-series-detail?seriesId=",
headers={
"Authorization": "API YOUR_API_KEY",
"Content-Type": "application/json",
},
)
data = res.json()req, _ := http.NewRequest("GET", "https://api.synup.com/api/v4/social-post-ideas/content-series-detail?seriesId=", nil)
req.Header.Set("Authorization", "API YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
res, err := http.DefaultClient.Do(req)Responses
| Status | Description |
|---|---|
200 | Successful response |
401 | Unauthorized - 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
| Name | Type | Required | Description |
|---|---|---|---|
data | object | optional | |
data.contentSeriesDetail | object | optional | |
data.contentSeriesDetail.id | string | optional | |
data.contentSeriesDetail.socialProfileId | string | optional | |
data.contentSeriesDetail.name | string | optional | |
data.contentSeriesDetail.theme | string | optional | |
data.contentSeriesDetail.status | string | optional | |
data.contentSeriesDetail.postCount | integer | optional | |
data.contentSeriesDetail.publishedCount | integer | optional | |
data.contentSeriesDetail.unpublishedCount | integer | optional | |
data.contentSeriesDetail.posts | array of object | optional | Posts in the series (see Post idea for the full shape). |
data.contentSeriesDetail.chatSessionId | string | optional | |
data.contentSeriesDetail.createdAt | string | optional | |
data.contentSeriesDetail.updatedAt | string | optional |