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

# Create social set

> Create a set. Returns 201.

<ParamField body="name" type="string" required>
  Unique on this account. Max 255.
</ParamField>

<ParamField body="color" type="string" required>
  Exactly `#` plus 6 hex digits (e.g. `#2563EB`). `#RGB` and names are rejected.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X POST https://connect.trypost.it/api/social-sets \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"name":"Launch","color":"#2563EB"}'
  ```
</RequestExample>
