Skip to content
Primary navigation

Fetch a character.

GET/videos/characters/{character_id}

Fetch a character.

Path ParametersExpand Collapse
character_id: string
ReturnsExpand Collapse
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.

curl https://api.openai.com/v1/videos/characters/$CHARACTER_ID \
    -H "Authorization: Bearer $OPENAI_API_KEY"
{
  "id": "id",
  "created_at": 0,
  "name": "name"
}
Returns Examples
{
  "id": "id",
  "created_at": 0,
  "name": "name"
}