# Content Picker

The content picker allows you to pick content and display whatever parts of that content on your website

<figure><img src="https://417697475-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FVr2cbdfxDGZK1u2Fd59w%2Fuploads%2FsA91WWHpWoheoN66xoiU%2Fcontent.png?alt=media&#x26;token=4d507bf2-95f5-4fe4-beae-a9319e3a7772" alt=""><figcaption></figcaption></figure>

#### Example of getting value on page

```csharp
(Content!.GetValue<List<Guid>>("PropertyAliasHere"))
```

Once you have the media ids, you can then use the `QueryContentCommand`

```csharp
var contentItems = await Mediator.Send(new QueryContentCommand
{
  Ids = contentIds
});
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://aptitude.gitbook.io/zaubercms/creating-a-website/current-content-properties/content-picker.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
