Skip to content
Primary navigation

Fetch a character.

$ openai videos get-character
GET/videos/characters/{character_id}

Fetch a character.

ParametersExpand Collapse
--character-id: string

The identifier of the character to retrieve.

ReturnsExpand Collapse
VideoGetCharacterResponse: object { id, created_at, name }
id: string

Identifier for the character creation cameo.

created_at: number

Unix timestamp (in seconds) when the character was created.

name: string

Display name for the character.

Fetch a character.

openai videos get-character \
  --api-key 'My API Key' \
  --character-id char_123
{
  "id": "id",
  "created_at": 0,
  "name": "name"
}
Returns Examples
{
  "id": "id",
  "created_at": 0,
  "name": "name"
}