Fetch a character.
$ openai videos get-character
get /videos/characters/{character_id}
Fetch a character.
Parameters
-
--character-id: stringThe identifier of the character to retrieve.
Returns
-
VideoGetCharacterResponse: object { id, created_at, name }-
id: stringIdentifier for the character creation cameo.
-
created_at: numberUnix timestamp (in seconds) when the character was created.
-
name: stringDisplay name for the character.
-
Example
openai videos get-character \
--api-key 'My API Key' \
--character-id char_123
Response
{
"id": "id",
"created_at": 0,
"name": "name"
}