---
title: "Create a new post for a creator"
method: POST
path: "/creators/{creatorUserUuid}/posts"
---

# Create a new post for a creator

`POST /creators/{creatorUserUuid}/posts`

Create a new post on behalf of a creator with optional media, text, and pricing.

## Path parameters

- `creatorUserUuid` string, uuid, required

## Headers

- `X-Fanvue-API-Version` string, required

## Request body

- object
  - `text` string — Text content of the post
  - `mediaUuids` string[] — Array of media UUIDs to attach to the post
  - `mediaPreviewUuid` string, uuid — UUID of free preview media shown before unlock
  - `price` number — Price in cents for paid posts (requires media)
  - `audience` 'subscribers' | 'followers-and-subscribers', required — Audience that can view the post
  - `publishAt` string, date-time — Future date/time to publish the post (ISO 8601 format)
  - `expiresAt` string, date-time — Date/time when the post expires (ISO 8601 format)
  - `collectionUuids` string[] — Array of content collection UUIDs to assign to the post

## Response `201`

Post created successfully

- object
  - `uuid` string, uuid, required — Unique identifier of the created post
  - `createdAt` string, date-time, required — Date/time when the post was created (ISO 8601 format)
  - `text` string, nullable, required — Text content of the post
  - `price` number, nullable, required — Price in cents for paid posts
  - `mediaPreviewUuid` string, uuid, nullable, required — UUID of free preview media
  - `audience` 'subscribers' | 'followers-and-subscribers', required — Audience that can view the post
  - `publishAt` string, date-time, nullable, required — Future date/time when the post will be published (ISO 8601 format)
  - `publishedAt` string, date-time, nullable, required — Date/time when the post was published (ISO 8601 format)
  - `expiresAt` string, date-time, nullable, required — Date/time when the post expires (ISO 8601 format)

## Other responses

- `400` — Bad Request - API version not supported OR validation failed OR invalid UUID
- `401` — Unauthorized Response
- `403` — Unauthorized Response
- `404` — Not Found Response
- `410` — API version no longer supported (sunset)
- `429` — Too many requests - rate limit exceeded

---

[API](https://skmtc.net/fanvue/apis/fanvue-api.md) · [All operations](https://skmtc.net/fanvue/apis/fanvue-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fanvue/fanvue-api/revisions/c5ddcd5c7e72/schema)
