GET
/
api
/
projects
/
public
List public projects
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/projects/public
{
  "success": true,
  "error": "<string>",
  "projects": [
    {
      "id": 1,
      "name": "Water hammer detection",
      "description": "<string>",
      "created": "2019-07-21T17:32:28Z",
      "owner": "<string>",
      "ownerAvatar": "<string>",
      "publicUrl": "https://studio.edgeimpulse.com/public/40479/latest",
      "projectType": "kws",
      "pageViewCount": 123,
      "cloneCount": 123,
      "totalSamplesCount": "<string>",
      "trainingAccuracy": 123,
      "testAccuracy": 123,
      "readme": {
        "markdown": "<string>",
        "html": "<string>"
      },
      "tags": [
        "FOMO",
        "birds"
      ]
    }
  ],
  "totalProjectCount": 123
}

Query Parameters

limit
integer

Maximum number of results

offset
integer

Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.

project
string

Only include projects where the name or owner contains this string

projectTypes
string

Comma separated list of project types to filter on. Supported values are 'audio', 'object-detection', 'image', 'accelerometer', 'other'.

sort
string

Fields and order to sort query by

Example:

"id,-name"

Response

200 - application/json

OK

The response is of type object.