> For the complete documentation index, see [llms.txt](https://docs-en.shoppy.is/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-en.shoppy.is/developers/developer-pages/get-started.md).

# Get Started

Setting up a Developer Page is super simple! Follow these steps below to see how it's done.

1. Log into your [Shopify](https://admin.shopify.com/) account using your information.
2. Navigate to the 'Pages' section within the Shoppy dashboard and select 'Add page'.

<figure><img src="/files/aXiUGt8siGmL8dqo7RmR" alt=""><figcaption></figcaption></figure>

3. Choose an appealing title and icon that represents your Developer Page, like "My Beautiful Developer Page"
4. Under 'Type', select 'Developer Page'

<figure><img src="/files/9MAmwO4s2MZjU1Aba1YN" alt=""><figcaption></figcaption></figure>

4. Now we can focus on the main strength of developer pages; using URLs it is possible to access different types of **dynamic values** related to your Shopify Clients that are navigating your developer page inside the app. \
   \
   In the 'Query' field, enter the base URL where the page will be hosted, such as `https://www.mybeautifulliste.com/app`\
   \
   Below the 'Query' field, you'll find the 'Key' and 'Value' fields. Here, you can add dynamic variables like `id`, `email`, `name`, and `surname`. \
   As you input these, the corresponding template tags (`{{user_id}}`, `{{user_email}}`, `{{user_first_name}}`, `{{user_last_name}}`) **will be automatically appended to your base URL as GET parameters**.

<figure><img src="/files/yiA4L3xZBDUhGkio2xDS" alt=""><figcaption></figcaption></figure>

Once you save your settings, the Developer Page within the app will direct users to a URL that looks like this:

`https://www.mybeautifulliste.com/app?id={{user_id}}&email={{user_email}}&name={{user_first_name}}&surname={{user_last_name}}`

When a user accesses this page, their unique information will replace the template tags, personalizing the page to their profile.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs-en.shoppy.is/developers/developer-pages/get-started.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
