Hosted on TrueFoundry

AI eyes for
your videos

Drop a Loom, YouTube link, or local video. Get structured notes your coding agent can act on — fix bugs, build features, create skills.

Analyze with platform auth

Upload a video or paste a URL. Access is handled by the authenticated deployment route.

— or —

Drop a video or image here, or

MP4, MOV, WebM, PNG, JPG — up to 500MB


01

Authenticate through TrueFoundry

Expose eyeroll behind TrueFoundry endpoint authentication. eyeroll does not issue or rotate its own keys.

# deploy eyeroll as an authenticated service
POST /api/watch
02

Send video context

Pass a URL or upload a file with optional surrounding context and repo context.

{
  "source": "https://loom.com/share/abc123",
  "context": "checkout breaks after applying coupon",
  "repo_context": "optional repo inventory"
}
03

Watch

The response includes the markdown report plus routing fields for agents.

# raw HTTP through the authenticated endpoint
curl -s -X POST https://api.eyeroll.dev/api/watch \
  -H "Content-Type: application/json" \
  -d '{"source":"https://loom.com/share/abc123"}'

Claude and coding-agent integrations should call the hosted watch endpoint through the authenticated platform route.

/eyeroll:api-watch <url>

Analyze a video URL via the hosted API. Returns intent, repo guess, handoff recommendation, and report.