Sample - OpenAI API
POST/videos/charactersDeprecated

Create a character

Creates a character from an uploaded video. Supply the video file and a display name between 1 and 80 characters; this operation is deprecated.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

2 body fields

Multipart form data containing the video used to create the character and its display name.

videostringrequired
Video file used to create a character.
namestringrequired
Display name for this API character.

1 status code
200Returns the created character with its `id`, `name`, and Unix creation timestamp in `created_at`.
idstringrequired
Identifier for the character creation cameo.
namestringrequired
Display name for the character.
created_atintegerrequired
Unix timestamp (in seconds) when the character was created.

Error handling

video and name are required. video must be an uploaded binary video file, and name must contain between 1 and 80 characters.