Influencer compliance auditing for brands that work with creators.
Startups and growing brands hire lots of creators for UGC campaigns. Once content goes live, you lose control. Did they add the required #ad disclosure? Did they mention a competitor? Did they make claims you never approved?
Right now, someone on your team has to manually watch every post, read every caption, and catch every slip. That doesn't scale when you're working with 50+ creators.
- Define your campaign rules (brand name, disclosures, competitor keywords, prohibited claims)
- Add creator handles
- Brandr scrapes their content, analyzes it with AI, and scores each post
- Dashboard with flags, scores, and remediation suggestions
This is where it gets interesting. We built AI-powered browser agents that navigate TikTok like a human would.
Not making API calls. The agent literally opens a browser, visits profiles, clicks through posts, expands captions, takes screenshots. The LLM decides what to do next based on what it sees.
This lets us:
- Extract data that's not available through any API
- Handle dynamic content and popups
- Adapt when TikTok changes their UI
- Capture screenshots as evidence
The find-creators agent taps into something you can't get from any API: TikTok's internal "Suggested accounts" algorithm.
We visit your existing creators, grab TikTok's own recommendations, and surface the ones that keep showing up. You get creator suggestions that are actually relevant to your niche.
Frontend: Next.js 14, TypeScript, Tailwind, shadcn/ui
Backend: Convex, Google Gemini 2.5 Flash, Flask
Agents: Browser Use, Python 3.11+, yt-dlp
brandr/
├── app/ # Next.js frontend
├── convex/ # Backend functions and schema
└── agents/
├── api.py # Flask API
├── tiktok-scraper.py # Compliance agent
└── find-creators.py # Discovery agent
npm install
npx convex dev
npm run devcd agents
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # add BROWSER_USE_API_KEY, GOOGLE_API_KEY
python api.pyPOST /scrape - Audit creators for compliance
POST /find-creators - Find similar creators from seeds
- Autonomous browser agents with LLMs
- Multimodal AI (text + image)
- Dynamic web scraping
- Real-time sync with Convex
- Full-stack TypeScript/React





