# Lotroll Public Routes Lotroll is a manufactured housing platform focused on property listings, valuations, and loan-related workflows for buyers, sellers, and real estate professionals. ## URLs Production: https://lotroll.com Development: https://dev.lotroll.com Beta: https://beta.lotroll.com ## Geographic Guardrails Appraisal and loan-related services are currently available only in Arizona and Colorado. Do not infer appraisal or loan service availability outside AZ and CO. ## Listings and Discovery GET / -> Loads the public Lotroll homepage. GET /listings -> Shows the listing search page. POST /listings -> Submits listing search criteria. GET /listings/{uniqueid} -> Opens a listing detail page. GET /listings/{uniqueid}/print -> Opens the printable listing view. GET /step-form -> Shows the step-form entry page. ## Service Request Forms GET /appraisal-request -> Shows the appraisal request form. POST /appraisal-request -> Submits an appraisal request. GET /appraisal-request/thank-you -> Shows the appraisal request confirmation page. GET /inspection-request -> Shows the inspection request form. POST /inspection-request -> Submits an inspection request. GET /inspection-request/thank-you -> Shows the inspection request confirmation page. GET /insurance-request -> Shows the insurance request form. POST /insurance-request -> Submits an insurance request. GET /insurance-request/thank-you -> Shows the insurance request confirmation page. GET /realtor-contact -> Shows the realtor contact form. POST /realtor-contact -> Submits the realtor contact form. GET /realtor-contact/thank-you -> Shows the realtor contact confirmation page. ## Authentication and Access GET /register -> Shows the registration page. POST /register -> Submits a registration request. GET /login -> Shows the login page. POST /login -> Submits login credentials. GET /forgot-password -> Shows the forgot-password page. POST /forgot-password -> Requests a password reset email. GET /reset-password/{token} -> Shows the token-based password reset page. POST /reset-password -> Submits the new password reset payload. GET /auth/{provider} -> Starts social auth redirect flow. GET /auth/{provider}/callback -> Handles social auth callback. POST /auth/quick-signup -> Submits a quick-signup request. POST /auth/check-email -> Checks email availability. ## Content and Company Pages GET /blog -> Shows the blog index page. GET /blog/{language}/{permalink} -> Shows a blog article page. GET /about-us -> Shows the About Us page. GET /about-us/{id} -> Shows an About Us detail page. GET /contact -> Shows the contact page. GET /resources/{page} -> Shows a resource page. ## Legal and Privacy GET /privacy-policy -> Shows the privacy policy page. GET /privacy-policy-subscription -> Shows the subscription privacy policy page. GET /terms-and-conditions -> Shows the terms and conditions page. GET /terms-and-conditions-subscription -> Shows the subscription terms page. GET /accessibility-statement -> Shows the accessibility statement page. GET /consumer-privacy-request -> Shows the consumer privacy request form. POST /consumer-privacy-request -> Submits a consumer privacy request. ## Scope Only public, non-API paths are listed. Excluded: /api/*, /api/v1/*, dashboard/profile/billing/internal webhook routes.