# Pawtice > SaaS platform for animal rescue foster networks. Helps rescue coordinators manage animals, foster volunteers, adoption pipelines, and impact metrics. Pawtice replaces spreadsheets and Facebook groups with a purpose-built tool for foster network coordination. It is a full-stack web application (React + Express + PostgreSQL) with Clerk authentication, Resend email, Replit Object Storage for photos, and OpenAI-powered AI features. Full reference: https://www.pawtice.com/llms-full.txt ## Core public pages - [Home](https://www.pawtice.com/): Landing page with feature overview, sign-in, and sign-up - [Features](https://www.pawtice.com/features): Detailed feature breakdown for rescue coordinators - [Pricing](https://www.pawtice.com/pricing): Plan comparison (Free, Suppawter $19/mo, Pro $39/mo, Network $99/mo) with FAQ - [FAQ](https://www.pawtice.com/faq): Frequently asked questions about Pawtice - [About](https://www.pawtice.com/about): Mission, values, stats, and founding story - [Contact](https://www.pawtice.com/contact): Contact form and support channels - [Blog](https://www.pawtice.com/blog): Guides and research for rescue coordinators - [Terms of Service](https://www.pawtice.com/terms): Terms and conditions - [Privacy Policy](https://www.pawtice.com/privacy): Privacy policy ## Vertical and use-case landing pages - [Rescue Networks](https://www.pawtice.com/rescue-networks): Purpose-built coordination tools for multi-rescue networks - [Foster Management](https://www.pawtice.com/foster-management): Foster volunteer roster, capacity visualization, and placement tools - [Adoption Software](https://www.pawtice.com/adoption-software): Adoption pipeline, PDF agreements, and public listings - [Volunteer Management](https://www.pawtice.com/volunteer-management): Foster volunteer recruitment, onboarding, and check-in systems - [Equine Rescue](https://www.pawtice.com/equine): Pawtice for equine and large-animal rescue organizations - [Public Safety Animals](https://www.pawtice.com/public-safety): Pawtice for law enforcement and public safety animal programs - [Forever Match](https://www.pawtice.com/forever-match): AI-powered adopter matching tool - [Surrender a Pet](https://www.pawtice.com/surrender): Public surrender intake form ## Comparison pages - [Pawtice vs Pawlytics](https://www.pawtice.com/pawtice-vs-pawlytics): Feature and pricing comparison with Pawlytics - [Pawtice vs PawPlacer](https://www.pawtice.com/pawtice-vs-pawplacer): Feature and pricing comparison with PawPlacer - [Pawtice vs Spreadsheets](https://www.pawtice.com/pawtice-vs-spreadsheets): Side-by-side workflow comparison ## Resources - [Resource Library](https://www.pawtice.com/resources): Free intake checklists, foster onboarding templates, and grant reporting guides ## Tools and interactive pages - [Foster Shortage Map](https://www.pawtice.com/foster-shortage-map): Interactive map of foster home capacity across regions ## Public adoption and giving - [Browse adoptable animals](https://www.pawtice.com/adopt): Public adoption listings — photos, bios, and adoption application form - [Animal adoption profile](https://www.pawtice.com/adopt/:id): Individual shareable animal profile with adoption application - [Org-scoped animal profile](https://www.pawtice.com/adopt/:orgSlug/:id): Organization-scoped shareable animal profile - [Become a foster volunteer](https://www.pawtice.com/become-a-foster): Public foster volunteer application form - [Donate](https://www.pawtice.com/donate/:slug): Organization-specific donation page ## App (requires authentication) - [Dashboard](https://www.pawtice.com/dashboard): Stats overview, species chart, recent activity feed, capacity bar, and overdue vaccine alerts - [Animals](https://www.pawtice.com/animals): Full animal CRUD — photos, health records, foster assignment, AI bio generation, intake assistant, and CSV export - [Calendar](https://www.pawtice.com/calendar): Month-grid calendar of health records, foster check-ins, and adoption applications - [Fosters](https://www.pawtice.com/fosters): Foster volunteer roster with capacity visualization, species preferences, and CSV export - [Adoptions](https://www.pawtice.com/adoptions): Adoption pipeline (pending → approved → completed) with PDF agreement download and CSV export - [Foster Applications](https://www.pawtice.com/foster-applications): Coordinator review of pending foster volunteer applications - [Impact](https://www.pawtice.com/impact): Monthly adoption chart, species breakdown, and KPI cards - [Settings](https://www.pawtice.com/settings): Organization and user profile settings ## API - Base path: `/api` - Health: `GET /api/healthz` - Animals: `GET|POST /api/animals`, `GET|PATCH|DELETE /api/animals/:id` - Health records: `GET|POST /api/animals/:id/health-records` - Foster check-ins: `GET|POST /api/animals/:id/checkins` - Calendar events: `GET /api/calendar/events` - Fosters: `GET|POST /api/fosters`, `GET|PATCH|DELETE /api/fosters/:id` - Adoptions: `GET|POST /api/adoptions`, `GET|PATCH|DELETE /api/adoptions/:id` - Adoption PDF: `GET /api/adoptions/:id/agreement.pdf` - Foster applications: `GET|POST /api/foster-applications` - Public animals: `GET /api/public/animals`, `GET /api/public/animals/:id` - Public adoptions: `POST /api/public/adoptions` - Blog articles: `GET /api/blog`, `GET /api/blog/:slug` - AI: `POST /api/ai/generate-bio`, `POST /api/ai/intake-assist`