For the complete documentation index, see llms.txt. This page is also available as Markdown.

HTTP API

JSON over HTTPS. Base URL and authentication match your deployment and the same settings you use for the CLI.

Submit task

POST /api/v1/tasks

{
  "subnet": "sn.roboarm.sim",
  "prompt": "dice tomatoes and place into pan",
  "rewardStable": 12.5,
  "stakeStable": 5,
  "deadline": 120
}

Register miner model

POST /api/v1/miners/models

{
  "subnet": "sn.roboarm.sim",
  "modelUri": "ipfs://.../policy.wasm",
  "kpi": {"success": ">=0.98", "time_s": "<=120"},
  "stakeStable": 10
}

Validator verify bundle

POST /api/v1/validators/verify

Last updated