Skip to Content
API Reference

API Reference

Fetch raw testing results seamlessly using our REST API.

GET/api/results/:type/:id

Retrieve the raw test result data.

Parameters

typestringrequired

The category of the test. Options: `s` (Standard) or `v` (Vulnerability).

idstringrequired

The unique 10-character identifier assigned to the specific test run.

Example Request
curl "https://myriad.proton.network/api/results/:type/:id"
200 OK Response
{
"id": "fee1d7a02f",
"test_type": "s",
"player_id": 4900536940,
"metadata": {
  "failed": 8,
  "passed": 114,
  "tested": 122,
  "executor": "Volt",
  "testTime": 26.58,
  "generated": "2026-02-20T05:20:08Z",
  "executorVersion": "1.2.1.1"
},
"results": {
  "Input": [
    {
      "name": "mousemoverel",
      "status": 200,
      "message": "Passed"
    }
  ]
},
"created_at": "2026-02-20T05:20:09.445728+00:00"
}
404 Not Found
{
"error": "Result not found or invalid"
}
GET/api/gallery/:type/best

Retrieve the highest confidence test result for all executors or a specific executor. Useful for embedding widgets or displaying the most accurate recent run.

Parameters

typestringrequired

The category of the test. Options: `s` (Standard) or `v` (Vulnerability).

executorstring (query)

Optional query parameter to filter by a specific executor name (e.g., `?executor=Volt`).

Example Request
curl "https://myriad.proton.network/api/gallery/:type/best"
200 OK Response
// Example for /api/gallery/s/best?executor=Volt
{
"executor": "Volt",
"baseline": 93,
"testId": "fee1d7a02f",
"confidence": 98,
"latestVersion": "1.2.1.1",
"isVerified": true,
"totalRuns": 42
}
404 Not Found
{
"error": "Executor not found in gallery consensus"
}
Last updated on