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
}
]
}
List all the tuner runs for a project.
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
}
]
}
Project ID
OK
The response is of type object
.