Last updated 9 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": [ { "tunerJobId": 0, "tunerCoordinatorJobId": 0, "index": 0, "name": "text", "created": "2025-01-21T00:56:43.734Z", "jobStatus": "cancelled", "continuationJobId": 0, "space": [ { "inputBlocks": [], "dspBlocks": [], "learnBlocks": [ [] ] } ] } ] }