# Refresh ideas

```http
POST https://api.synup.com/api/v4/social-post-ideas/refresh-ideas
```

Regenerates the set of AI social post ideas for a brand. Returns a pipeline ID; supply brand context (profile name, site URL, categories, hashtags, intent, content language) to steer generation.

Source: https://developer.synup.com/api/social-post-ideas/refresh-ideas

## Header parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `Synup-Version` | string | required | API version date (YYYY-MM-DD). |

## Request body

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `socialProfileId` | string | required |  |
| `profileName` | string | required |  |
| `siteUrl` | string | optional |  |
| `categories` | array of string | optional |  |
| `brandHashtags` | array of string | optional |  |
| `businessIntent` | string | optional |  |
| `contentPreferredLanguage` | string | optional |  |

## Example request

```bash
curl -X POST 'https://api.synup.com/api/v4/social-post-ideas/refresh-ideas' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "socialProfileId": "6f1c2a90-...",
  "profileName": "Acme Co"
}'
```

## Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Unauthorized - Invalid or missing API key |
