# Start chat session

```http
POST https://api.synup.com/api/v4/social-post-ideas/start-chat-session
```

Starts a new AI post-idea chat session for a brand (social profile). Optionally seed with an `intent`, a `mode`, and a subject (`subjectType`/`subjectId`) to anchor the conversation.

Source: https://developer.synup.com/api/social-post-ideas/start-chat-session

## 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 |  |
| `intent` | string | optional |  |
| `mode` | string | optional |  |
| `subjectType` | string | optional |  |
| `subjectId` | string | optional |  |

## Example request

```bash
curl -X POST 'https://api.synup.com/api/v4/social-post-ideas/start-chat-session' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "socialProfileId": "6f1c2a90-...",
  "mode": "fast",
  "intent": "idea"
}'
```

## Responses

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