> ## Documentation Index
> Fetch the complete documentation index at: https://docs.get-spotlight.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create topics

> Create one or more topics for a brand.

Creates topics without adding prompts. Use this to first scaffold the topic structure, then add prompts via [Create prompts](/api-reference/topics-prompts/create-prompts) or [Batch create](/api-reference/topics-prompts/batch-create).

### Path parameters

<ParamField path="brandId" type="string" required>
  Brand UUID. Obtain from [List brands](/api-reference/brands/list).
</ParamField>

### Request body

<ParamField body="topics" type="object[]" required>
  <Expandable title="Topic" />
</ParamField>

### Request

```bash theme={null}
curl -s -X POST \
  -H "x-spotlight-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "topics": [{ "name": "Pricing" }, { "name": "Support" }] }' \
  "https://app.get-spotlight.com/api/v1/brands/BRAND_ID/topics"
```

### Response

```json theme={null}
{
  "topics": [
    { "id": "topic-uuid-1", "name": "Pricing" },
    { "id": "topic-uuid-2", "name": "Support" }
  ]
}
```
