# Anki Addons Platform The best place to find, share, and manage Anki addons. ## Site Structure - /: Home page - /search: Search addons with filters - /addons/[slug]: Addon detail page - /auth/login: User login - /auth/signup: User registration - /browse: Browse addons by category - /agb: Terms of Service - /data-privacy: Privacy Policy ## For AI Agents ### Searching Addons You can search for addons using the public API. Endpoint: GET /api/addons Parameters: - search (string): Search query - category (string): Filter by category name - pricingType (enum): 'free' | 'paid' | 'subscription' - source (enum): 'open' | 'closed' - licenseType (enum): 'MIT' | 'GPLv3' | 'AGPLv3' | 'Apache-2.0' | 'BSD-3-Clause' | 'Proprietary' - sort (enum): 'downloads' | 'rating' | 'createdAt' - limit (int): Max results (default 20) Example: GET /api/addons?search=medical&licenseType=AGPLv3&sort=downloads ### Addon Details Each addon has a detail page at /addons/[slug] or /addons/[id]. The page contains the full description (Markdown), installation code, and version history.