> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vers.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Repo get

# vers repo get

Print detailed information about one repository: ID, visibility, creation time, description.

## Synopsis

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
vers repo get <name>
vers repo get <name> --format json
```

## Options

| Option     | Description           |
| ---------- | --------------------- |
| `--format` | Output format: `json` |

## Examples

### Default output

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
vers repo get my-app
# Name:        my-app
# Repo ID:     1f2aabcd-1234-5678-9abc-def012345678
# Visibility:  private
# Created:     2026-04-18 14:02:10
# Description: Production build artifacts
```

### JSON

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
vers repo get my-app --format json
```

```json theme={"theme":{"light":"min-light","dark":"min-dark"}}
{
  "repo_id": "1f2a…",
  "name": "my-app",
  "is_public": false,
  "created_at": "2026-04-18T14:02:10Z",
  "description": "Production build artifacts"
}
```

To see the tags inside the repo, use [`vers repo tag list`](/cli-reference/repo-tag-list).

## Error Cases

### Repository not found

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
vers repo get nope
# Error: Repository not found
```

## See Also

* [`vers repo list`](/cli-reference/repo-list)
* [`vers repo tag list`](/cli-reference/repo-tag-list)
