Skip to content

Field record and follow

A field record is the public proof of an operator’s judgment — a sports card for calls.

  • denpa.ai/u/[handle] — public field record
  • denpa.ai/user — the private dashboard
  • denpa.ai/operator/[handle] — legacy alias

It aggregates rank, accuracy, calls, score, streak, best category, category ranks, open and resolved signals, best and worst calls, takes, followers and following.

GET /api/network/field-record/[handle] { handle, origin, rank, score, calls, resolved, correct,
pending, accuracy, streak, avgClvBps, recent[5], profileUrl }
GET /api/network/field-record/me dk_ · the same shape for the key's owner

Follow means: “I trust this operator’s judgment.”

user_follows { followerUserId, followingUserId, createdAt, categoryScope? }
  • Follows are user-to-user in the protocol, keyed by internal user id. The live route takes { handle } and bridges to the id-keyed table.
  • Later: category-specific follows (follow @handle for music, for soccer, for fashion).
  • The graph decides whose signals deserve air next, closing the loop: the audience becomes the director.
POST /api/user/follow { handle }
DELETE /api/user/follow { handle }