API Reference
Fetch raw testing results seamlessly using our REST API.
GET
/api/results/:type/:idRetrieve the raw test result data.
Parameters
typestringrequiredThe category of the test. Options: `s` (Standard) or `v` (Vulnerability).
idstringrequiredThe unique 10-character identifier assigned to the specific test run.
Example Request
curl "https://myriad.proton.network/api/results/:type/:id"
200 OK Response
404 Not Found
GET
/api/gallery/:type/bestRetrieve the highest confidence test result for all executors or a specific executor. Useful for embedding widgets or displaying the most accurate recent run.
Parameters
typestringrequiredThe 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
404 Not Found
Last updated on