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

# versuno prompts assets get

> Print an asset's content to stdout without writing to disk.

```
versuno prompts assets get <id>
```

Fetches a single asset from the Versuno API and prints it to stdout as a Markdown file with YAML frontmatter. Nothing is written to disk.

This is useful for piping an asset's content into other tools.

## Arguments

| Argument | Required | Description                  |
| -------- | -------- | ---------------------------- |
| `id`     | Yes      | Asset ID (e.g. `ctx_abc123`) |

## Options

| Flag            | Description                                               |
| --------------- | --------------------------------------------------------- |
| `--format json` | Output the full asset object as JSON instead of Markdown. |

## Example

```bash theme={null}
# Print as Markdown with frontmatter
versuno prompts assets get ctx_abc123

# Full JSON metadata
versuno prompts assets get ctx_abc123 --format json

# Pipe content into another tool
versuno prompts assets get ctx_abc123 | grep "system"
```

## Output

```md theme={null}
---
id: ctx_abc123
type: context
title: Onboarding Guide
tags: [onboarding]
created_at: 2026-01-01T00:00:00Z
updated_at: 2026-04-01T12:00:00Z
---

Welcome to the onboarding flow...
```

## See also

* [versuno prompts pull](/cli/pull) — write an asset to disk
* [versuno prompts assets list](/cli/assets-list) — list available asset IDs
