SPB Git

spb/airiskindex Public

The most methodologically rigorous, fully transparent AI job-exposure index.

TypeScript 88% Python 6.1% SQL 2.7% CSS 1.2% JavaScript 0.9% Shell 0.8%
563 B · 21 lines typescript
Raw Blame History
1//  File:    route.ts2//  Path:    apps/web/app/api/v1/health/route.ts3//  Project: AI Risk Index — airiskindex.io4//  Author:  Simon-Pierre Boucher5//  Contact: contact@spboucher.ai6//  Copyright © 2026 Simon-Pierre Boucher. All rights reserved.7//8//  Description: Public API: health check with index version.910import { INDEX_VERSION } from "@airiskindex/scoring";1112export const dynamic = "force-dynamic";1314export function GET(): Response {15  return Response.json({16    ok: true,17    index_version: INDEX_VERSION,18    time: new Date().toISOString(),19  });20}21