GETapi.synup.com/api/v4/social-post-ideas/post-ideas
Post ideas
Returns the AI social post ideas for a brand (social profile). Filter by bucket (e.g. idea, calendar, series) and filter (e.g. ai vs mine), and page with limit/offset.
Requires an API key. Send it as
Authorization: API <your-key> — see Getting started.Parameters
Query
| Name | Type | Required | Description |
|---|---|---|---|
socialProfileId | string | required | Social profile ID. |
bucket | string | optional | Bucket to filter by (e.g. idea, calendar, series). |
filter | string | optional | Source filter (e.g. ai or mine). |
limit | integer | optional | Maximum number of ideas to return. |
offset | integer | optional | Number of ideas to skip. |
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/post-ideas?socialProfileId=&bucket=&filter=&limit=&offset=' \
-H 'Authorization: API YOUR_API_KEY' \
-H 'Content-Type: application/json'const res = await fetch('https://api.synup.com/api/v4/social-post-ideas/post-ideas?socialProfileId=&bucket=&filter=&limit=&offset=', {
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/post-ideas?socialProfileId=&bucket=&filter=&limit=&offset=",
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/post-ideas?socialProfileId=&bucket=&filter=&limit=&offset=", 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": {
"postIdeas": [
{
"id": "string",
"socialProfileId": "string",
"title": "string",
"content": "string",
"imagePrompt": "string",
"imageUrl": "string",
"type": "string",
"status": "string",
"platforms": [
"string"
],
"bucket": "string",
"calendarDay": 0,
"scheduledDate": "string",
"scheduledTime": "string",
"ctaText": "string",
"ctaUrl": "string",
"note": "string",
"seriesId": "string",
"socialPostId": "string",
"isRecurring": true,
"isUserGenerated": true,
"observanceName": "string",
"observanceDate": "string",
"language": "string",
"generationBatchId": "string",
"fluxJobId": "string",
"createdAt": "string",
"updatedAt": "string"
}
]
}
}Response body
| Name | Type | Required | Description |
|---|---|---|---|
data | object | optional | |
data.postIdeas | array of object | optional | |
data.postIdeas[].id | string | optional | |
data.postIdeas[].socialProfileId | string | optional | |
data.postIdeas[].title | string | optional | |
data.postIdeas[].content | string | optional | |
data.postIdeas[].imagePrompt | string | optional | |
data.postIdeas[].imageUrl | string | optional | |
data.postIdeas[].type | string | optional | |
data.postIdeas[].status | string | optional | |
data.postIdeas[].platforms | array of string | optional | |
data.postIdeas[].bucket | string | optional | |
data.postIdeas[].calendarDay | integer | optional | |
data.postIdeas[].scheduledDate | string | optional | |
data.postIdeas[].scheduledTime | string | optional | |
data.postIdeas[].ctaText | string | optional | |
data.postIdeas[].ctaUrl | string | optional | |
data.postIdeas[].note | string | optional | |
data.postIdeas[].seriesId | string | optional | |
data.postIdeas[].socialPostId | string | optional | |
data.postIdeas[].isRecurring | boolean | optional | |
data.postIdeas[].isUserGenerated | boolean | optional | |
data.postIdeas[].observanceName | string | optional | |
data.postIdeas[].observanceDate | string | optional | |
data.postIdeas[].language | string | optional | |
data.postIdeas[].generationBatchId | string | optional | |
data.postIdeas[].fluxJobId | string | optional | |
data.postIdeas[].createdAt | string | optional | |
data.postIdeas[].updatedAt | string | optional |