Home
Guides
API Reference
Forum
Search…
Data Ingestion
Ingestion service
New ingestion API
Data acquisition format
Importing CSV data
C SDK Usage Guide
Remote Management
Remote management protocol
Serial protocol
C++ Inference SDK Library
Inferencing SDK
Macros
Structs
Global variables
Functions
Functions to be implemented by user
Edge Impulse API
Edge Impulse API
ApplicationTesting
Auth
CDN
Classify
Deployment
Devices
DSP
Export
Health
Impulse
Jobs
Learn
Login
Optimization
Create Trial
Get Config
Get Trial Logs
Retrieves The Eon Tuner State
Score Trial
Search Space
Update Config
Update Search Space
OrganizationBlocks
OrganizationCreateProject
OrganizationData
OrganizationJobs
OrganizationPipelines
OrganizationPortals
Organizations
Projects
Raw data
Themes
ThirdPartyAuth
UploadPortal
User
Websocket API
Powered By
GitBook
Retrieves The Eon Tuner State
Retrieves the EON tuner state
get
https://studio.edgeimpulse.com/v1
/api/{projectId}/optimize/state
Retrieves the EON tuner state
cURL
Python
Node.js
curl
--request GET
\
--url https://studio.edgeimpulse.com/v1/api/
{
projectId
}
/optimize/state
\
--header
'x-jwt-token: REPLACE_KEY_VALUE'
import
http
.
client
​
conn
=
http
.
client
.
HTTPSConnection
(
"studio.edgeimpulse.com"
)
​
headers
=
{
'x-jwt-token'
:
"REPLACE_KEY_VALUE"
}
​
conn
.
request
(
"GET"
,
"/v1/api/{projectId}/optimize/state"
,
headers
=
headers
)
​
res
=
conn
.
getresponse
()
data
=
res
.
read
()
​
print
(
data
.
decode
(
"utf-8"
))
const
request
=
require
(
'request'
);
​
const
options
=
{
method
:
'GET'
,
url
:
'https://studio.edgeimpulse.com/v1/api/{projectId}/optimize/state'
,
headers
:
{
'x-jwt-token'
:
'REPLACE_KEY_VALUE'
}
};
​
request
(
options
,
function
(
error
,
response
,
body
)
{
if
(
error
)
throw
new
Error
(
error
);
​
console
.
log
(
body
);
});
Previous
Get Trial Logs
Next
Score Trial
Last modified
1mo ago
Export as PDF
Copy link