OROoro docs
Miner

List miner's agents

List all agents owned by the authenticated miner, with cooldown status. Includes the latest version per agent with its state and score so the frontend doesn't need to make N additional requests.

GET/v1/miner/agents

Response Body

application/json

curl -X GET "https://loading/v1/miner/agents"
{
  "agents": [
    {
      "agent_id": "2b1e3b65-2c04-4fa2-a2d7-467901e98978",
      "miner_hotkey": "string",
      "agent_name": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "latest_version": {
        "agent_version_id": "1c2a713c-7248-4a56-a9eb-0bdcb3a41741",
        "version_number": 0,
        "submitted_at": "2019-08-24T14:15:22Z",
        "state": "RECEIVED",
        "final_score": 0
      }
    }
  ],
  "can_submit": true,
  "next_allowed_at": "2019-08-24T14:15:22Z"
}