## Get a specific skill version.

`$ openai skills:versions retrieve`

**get** `/skills/{skill_id}/versions/{version}`

Get a specific skill version.

### Parameters

- `--skill-id: string`

  The identifier of the skill.

- `--version: string`

  The version number to retrieve.

### Returns

- `skill_version: object { id, created_at, description, 4 more }`

  - `id: string`

    Unique identifier for the skill version.

  - `created_at: number`

    Unix timestamp (seconds) for when the version was created.

  - `description: string`

    Description of the skill version.

  - `name: string`

    Name of the skill version.

  - `object: "skill.version"`

    The object type, which is `skill.version`.

  - `skill_id: string`

    Identifier of the skill for this version.

  - `version: string`

    Version number for this skill.

### Example

```cli
openai skills:versions retrieve \
  --api-key 'My API Key' \
  --skill-id skill_123 \
  --version version
```

#### Response

```json
{
  "id": "id",
  "created_at": 0,
  "description": "description",
  "name": "name",
  "object": "skill.version",
  "skill_id": "skill_id",
  "version": "version"
}
```
