GET
/
api
/
{projectId}
/
optimize
/
runs
List all tuner runs
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/optimize/runs \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "runs": [
    {
      "tunerJobId": 123,
      "tunerCoordinatorJobId": 123,
      "index": 123,
      "name": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "jobStatus": "cancelled",
      "continuationJobId": 123,
      "space": [
        {
          "parameters": {},
          "inputBlocks": [
            {}
          ],
          "dspBlocks": [
            {}
          ],
          "learnBlocks": [
            [
              {}
            ]
          ]
        }
      ],
      "visible": true
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Response

200 - application/json

OK

The response is of type object.