List public projects

List public projects

get

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

projectTypesstringoptional

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

Example: accelerometer,audio,object-detection
sortstringoptional

Comma separated list of fields to sort query by. Prefix with a minus (-) sign to indicate descending order. Default order is ascending

Example: id,-name
Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/projects/public'
{
  "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?