> For the complete documentation index, see [llms.txt](https://dev.hybrid-chain.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.hybrid-chain.com/guides/entertainment-and-gaming/event-access-and-nft-ticketing.md).

# Event Access & NFT Ticketing

**Overview:** With Hybrid-Chain, event organizers can issue tamper-proof digital tickets as NFTs that are transferable, verifiable, and fully owned by the ticket holder. Each NFT represents a unique event pass and includes metadata such as venue, seat, time, and category—enabling a fraud-resistant and highly scalable ticketing system that is interoperable across wallets and platforms.

**Platform Benefits:** Unlike traditional systems that rely on centralized databases and intermediaries, Hybrid-Chain NFT tickets are self-custodial, transferable via email or wallet address, and verified at the edge without requiring centralized lookup tables. This opens the door to dynamic ticket pricing, secondary marketplaces, smart-contract royalties, and event access without risk of duplication.

**Integration Flow:**

1. Log in as a Whitelabel Admin and create the event in the NFT Module:
   * Define event metadata (title, time, location, seat map, etc.)
   * Set the total ticket supply, assign categories (General, VIP, Early Access)
   * Define optional royalties for secondary sales (e.g., 10% to the organizer)
2. Mint tickets as NFTs using `TokenCreate()` with the appropriate metadata and visual assets (seat row, section, QR hash, branding)
3. Distribute the NFTs to users:
   * Via direct purchase through your checkout UI (integrating `CreateInvoice()` and `SecureSend()`)
   * Or via giveaways, email-based airdrops, affiliate partners, etc.
4. Enable the user to hold the NFT in their Hybrid-Wallet, accessible by email login or native blockchain key (depending on your flow)
5. On event day, validate access:
   * Scan QR codes on the ticket linked to the NFT metadata
   * Use `GetTokenOwnership()` to confirm the ticket is valid and unredeemed
   * Mark the ticket as used by updating metadata or burning the token
6. Allow secondary trading of tickets via your integrated marketplace or other supported platforms, with royalties enforced via smart contracts

**Optional Add-ons:**

* Attach additional access privileges (e.g., backstage, drinks, merchandise redemption)
* Upgrade tickets dynamically via `TokenSwap()` (e.g., GA to VIP)
* Pair NFTs with physical wristbands using NFC + blockchain pairing
* Offer post-event POAPs or memorabilia minted to ticket holders

**Note:** NFT-based ticketing may be subject to local ticketing laws or resale restrictions. Ensure smart contracts are compliant and usage terms are clearly displayed to end users.


---

# 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://dev.hybrid-chain.com/guides/entertainment-and-gaming/event-access-and-nft-ticketing.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.
