List public projects
Retrieve the list of all public projects. You don't need any authentication for this method.
Query parameters
limitintegerOptional
Maximum number of results
offsetintegerOptional
Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.
projectstringOptional
Only include projects where the name or owner contains this string
projectTypesstringOptionalExample:
Comma separated list of project types to filter on. Supported values are 'audio', 'object-detection', 'image', 'accelerometer', 'other'.
accelerometer,audio,object-detection
sortstringOptionalExample:
Comma separated list of fields to sort query by. Prefix with a minus (-) sign to indicate descending order. Default order is ascending
id,-name
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/projects/public HTTP/1.1
Host: studio.edgeimpulse.com
Accept: */*
200
OK
{
"success": true,
"error": "text",
"projects": [
{
"id": 1,
"name": "Water hammer detection",
"description": "text",
"created": "2019-07-21T17:32:28Z",
"owner": "text",
"ownerAvatar": "text",
"publicUrl": "https://studio.edgeimpulse.com/public/40479/latest",
"projectType": "kws",
"pageViewCount": 1,
"cloneCount": 1,
"totalSamplesCount": "text",
"trainingAccuracy": 1,
"testAccuracy": 1,
"readme": {
"markdown": "text",
"html": "text"
},
"tags": [
"FOMO",
"birds"
]
}
],
"totalProjectCount": 1
}
Last updated
Was this helpful?