POST
Project ingestion
Submit raw datasets for expert verification. Define consensus tiers and node requirements in a single payload.
// POST /v1/projects
{
"id": "exp-01",
"domain": "reasoning",
"nodes": 3,
"payload": [...]
}
Resources / Developers
Programmatic access to the 3+1 Engine. Deploy projects, poll consensus status, and retrieve ground truth via RESTful endpoints.
Endpoints
Submit raw datasets for expert verification. Define consensus tiers and node requirements in a single payload.
// POST /v1/projects
{
"id": "exp-01",
"domain": "reasoning",
"nodes": 3,
"payload": [...]
}
Monitor real-time progress of the 3+1 cycle. Receive webhook notifications upon final ground-truth certification.
// GET /v1/projects/:id/status
{
"state": "FORGING",
"confidence": 0.942,
"dispute": false
}