# Generate all local series posts

```http
POST https://api.synup.com/api/v4/local-post-ideas/generate-all-series-posts
```

Generates all remaining posts for a content series in one call. Returns the generated ideas and a count.

Source: https://developer.synup.com/api/local-post-ideas/generate-all-local-series-posts

## Header parameters

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

## Request body

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `locationId` | string | required |  |
| `seriesId` | string | required |  |

## Example request

```bash
curl -X POST 'https://api.synup.com/api/v4/local-post-ideas/generate-all-series-posts' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "locationId": "TG9jYXRpb246MQ==",
  "seriesId": "3a1f..."
}'
```

## Responses

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