> For the complete documentation index, see [llms.txt](https://docs.playground.ooo/degen-engine/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.playground.ooo/degen-engine/guides/trait-templates/get-started-with-a-pre-made-trait-template/access-passes.md).

# Access Passes

Using Traits as Access Passes provides a versatile and innovative solution for brands, creators, and enterprises to offer unique and exclusive experiences to their audience.&#x20;

By releasing Access Pass Traits to the NFT ecosystem, you can distribute access for a wide range of possibilities such as VIP access to events, early access to content, or entry to restricted digital areas.

Usage Guide:

1. Copy the Access Passes Trait Template provided below and save it as a JSON file.
2. Modify the `value`, `image_url`, and other fields as needed to represent the various access levels or benefits relevant to your brand, creators, or enterprises.
3. Ensure the `render_order` value is set to a high number (e.g., 60) to allow the Access Pass to be displayed on top of other traits when multiple traits are combined in a single NFT. This will ensure that the access-related traits are clearly visible.
4. If you want to add more access passes or benefits, simply add more objects to the "traits" array and maintain the same `trait_type` and `render_order` values.
5. Upload the JSON file to your platform, following the instructions for submitting a Trait Template.

```json
{
  "template_name": "Access Passes",
  "traits": [
    {
      "value": "VIP Lounge",
      "trait_type": "Access",
      "render_order": "60",
      "image_url": "https://example.com/images/vip-lounge-pass.png"
    },
    {
      "value": "Exclusive Event",
      "trait_type": "Access",
      "render_order": "60",
      "image_url": "https://example.com/images/exclusive-event-pass.png"
    },
    {
      "value": "Limited Edition Content",
      "trait_type": "Access",
      "render_order": "60",
      "image_url": "https://example.com/images/limited-edition-content-pass.png"
    }
  ]
}
```


---

# 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.playground.ooo/degen-engine/guides/trait-templates/get-started-with-a-pre-made-trait-template/access-passes.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.
