PRISM

Architecture mining, training variants, scoring, and operators.

PRISMPRISM

PRISM API reference

Public and internal PRISM API surfaces for miners, reviewers, validators, and Platform operators.

#prism/api-reference
prismapireference

Endpoint summary

This section documents conceptual PRISM service surfaces for operator context. The static website exposes `/challenges/prism` and `/challenges/prism/architectures/[submissionId]` review pages; it does not expose live PRISM API routes.

EndpointAudiencePurpose
GET /challenges/prismWebsiteStatic challenge overview and architecture board.
GET /challenges/prism/architectures/[submissionId]WebsiteStatic architecture submission review page.
GET /v1/architecturesConceptual serviceArchitecture leaderboard if a PRISM service is running.
POST /v1/submissionsConceptual serviceSubmit manifest and artifacts when enabled outside this static website.
GET /internal/v1/get_weightsPlatform masterReturn hotkey reward weights outside public website routes.

Response shapes

Docs expose compact shapes rather than every implementation field.

typescript
type PrismArchitectureRow = {
  id: string;
  name: string;
  owner: string;
  hotkey: string;
  qArch: string;
  currentTrainLoss: string;
  reward: string;
};