JUSTHUMAN

Integrate
human verification

Add authorship verification to any workflow. Two API calls, no SDK required. Every piece of text your organization produces can carry cryptographic proof that a human wrote it.

API Quick Start

Just Human exposes two endpoints. Submit keystroke events to create a recording, then retrieve it by hash. No API key is needed - rate limits are IP-based.

Create a recordingPOST /api/recordings
fetch('https://justhuman.app/api/recordings', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    events,        // keystroke events from recorder
    finalText,     // the finished text
  }),
})
  .then(res => res.json())
  .then(data => {
    console.log(data.url);   // https://justhuman.app/a8Xk2mNp
    console.log(data.hash);  // a8Xk2mNp
  });
Retrieve & verifyGET /api/recordings/:hash
fetch('https://justhuman.app/api/recordings/a8Xk2mNp')
  .then(res => res.json())
  .then(data => {
    console.log(data.analysis.score);       // 87
    console.log(data.analysis.confidence);  // "high"
    console.log(data.durationMs);           // 184200
    console.log(data.charCount);            // 1423
  });

Integration Scenarios

Six proven patterns for organizations that need to verify human authorship at scale.

Legal & Compliance

Regulatory filings & contracts

Prove human authorship of legal briefs, regulatory submissions, and contracts - a defensible audit trail for every document.

  • SOX compliance: attach proof links to quarterly filings
  • Legal discovery: demonstrate human-authored correspondence
  • Contract drafting audit trails for counterparty due diligence
  • Board resolutions and shareholder letters with verified authorship
Financial Services

Research & advisory

Investment banks and asset managers verify that analyst reports and client advisory letters are genuinely human-authored.

  • Equity research notes published with authorship proof
  • Risk assessment memos carry replay links for auditors
  • Client advisory letters with human-authorship verification
  • ESG and sustainability reports with transparent writing process
HR & Recruitment

Candidate assessment

Verify that cover letters, written assessments, and internal promotion essays were authored by the candidate - not generated.

  • Take-home coding or writing assignments with keystroke proof
  • Cover letter verification during screening
  • Internal promotion essays with replay links for review panels
  • Writing-intensive roles require Just Human proof at submission
Journalism & Media

Byline verification

Newsrooms prove that articles, op-eds, and investigative pieces were genuinely reported and written by the credited author.

  • Op-ed and editorial submissions carry authorship proof
  • Investigative articles with full writing process replay
  • Freelancer submissions verified before publication
  • Reader trust badges on verified human-authored content
Academic

Essay & thesis integrity

Students submit writing with a replay link. Professors watch the thought process - not just the result.

  • LMS plugin collects keystrokes during in-browser exams
  • Thesis submissions require a Just Human replay link
  • Typing biometrics flag suspicious score + style mismatches
  • Accommodations for dictation / accessibility tools documented
Social Media

Content authenticity

Platforms and influencers prove original authorship. Followers verify at a glance.

  • Auto-append proof link to posts via Chrome extension
  • Platform-side badge for verified human-authored posts
  • API webhook on new recordings for moderation pipelines
  • Creator dashboards with human-authorship analytics
Enterprise integration

Let us build
it for you

Dynamic Strategies can integrate Just Human into your existing infrastructure - LMS platforms, CMS systems, compliance tools, social media pipelines, or custom applications. We handle the technical work so your team can focus on what matters.

  • Custom API integration & webhook setup
  • LMS plugin development (Canvas, Moodle, Blackboard)
  • Compliance workflow design & audit trail setup
  • White-label recorder deployment
  • On-premise / private cloud hosting
  • Staff training & onboarding
JUSTHUMANShow that you wrote it