# Mox Lotus Vault

> Mox Lotus Vault is a Magic: The Gathering card inventory application. It
> lets collectors track the cards they own and see live market values from
> Card Kingdom, Mana Pool, and TCGplayer.

## Core pages

- [Home](https://moxlotusvault.com/): Marketing page describing the product.
- [Register](https://moxlotusvault.com/users/register): Create an account.
- [Log in](https://moxlotusvault.com/users/login): Sign in to your vault.

## Notes for AI agents

- The core application (adding cards, viewing your inventory and value) is
  **login-gated** and requires an authenticated session, so it is not
  publicly crawlable.
- Authenticated users can add a card by name and set code via
  `POST /api/cards` (body: `{"name": "...", "set_code": "..."}`), list sets
  via `GET /api/sets?q=...`, and search/confirm card prints within a set via
  `GET /api/cards?set=...&q=...`. These endpoints require login.
