## Fetch a character.

`$ openai videos get-character`

**get** `/videos/characters/{character_id}`

Fetch a character.

### Parameters

- `--character-id: string`

  The identifier of the character to retrieve.

### Returns

- `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.

### Example

```cli
openai videos get-character \
  --api-key 'My API Key' \
  --character-id char_123
```

#### Response

```json
{
  "id": "id",
  "created_at": 0,
  "name": "name"
}
```
