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
| Name | Type | Required | Description |
|---|---|---|---|
locationId | string | required | Relay-encoded location ID. |
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/local-post-ideas/content-series-list?locationId=' \
-H 'Authorization: API YOUR_API_KEY' \
-H 'Content-Type: application/json'const res = await fetch('https://api.synup.com/api/v4/local-post-ideas/content-series-list?locationId=', {
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/local-post-ideas/content-series-list?locationId=",
headers={
"Authorization": "API YOUR_API_KEY",
"Content-Type": "application/json",
},
)
data = res.json()req, _ := http.NewRequest("GET", "https://api.synup.com/api/v4/local-post-ideas/content-series-list?locationId=", 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": {
"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
| Name | Type | Required | Description |
|---|---|---|---|
data | object | optional | |
data.localContentSeriesList | array of object | optional | |
data.localContentSeriesList[].id | string | optional | |
data.localContentSeriesList[].locationId | integer | optional | |
data.localContentSeriesList[].name | string | optional | |
data.localContentSeriesList[].theme | string | optional | |
data.localContentSeriesList[].status | string | optional | |
data.localContentSeriesList[].postCount | integer | optional | |
data.localContentSeriesList[].publishedCount | integer | optional | |
data.localContentSeriesList[].unpublishedCount | integer | optional | |
data.localContentSeriesList[].posts | array of object | optional | Posts in the series (see Local post idea for the full shape). |
data.localContentSeriesList[].chatSessionId | string | optional | |
data.localContentSeriesList[].createdAt | string | optional | |
data.localContentSeriesList[].updatedAt | string | optional |