Last updated 7 months ago
List all the tuner runs for a project.
Project ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/optimize/runs', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "runs": [ { "name": "text", "created": "2024-11-21T08:44:33.050Z", "jobStatus": "cancelled", "space": [ { "inputBlocks": [], "dspBlocks": [], "learnBlocks": [ [] ] } ] } ] }