PRISMPRISM
PRISM API reference
Public and internal PRISM API surfaces for miners, reviewers, validators, and Platform operators.
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.
| Endpoint | Audience | Purpose |
|---|---|---|
| GET /challenges/prism | Website | Static challenge overview and architecture board. |
| GET /challenges/prism/architectures/[submissionId] | Website | Static architecture submission review page. |
| GET /v1/architectures | Conceptual service | Architecture leaderboard if a PRISM service is running. |
| POST /v1/submissions | Conceptual service | Submit manifest and artifacts when enabled outside this static website. |
| GET /internal/v1/get_weights | Platform master | Return 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;
};