Get impulse blocks

Get impulse blocks

get

Lists all possible blocks that can be used in the impulse

Authorizations
Path parameters
projectIdintegerRequired

Project ID

Responses
200
OK
application/json
Responseall of
get
GET /v1/api/{projectId}/impulse/blocks HTTP/1.1
Host: studio.edgeimpulse.com
x-api-key: YOUR_API_KEY
Accept: */*
200

OK

{
  "success": true,
  "error": "text",
  "inputBlocks": [
    {
      "type": "time-series",
      "title": "Time series",
      "author": "Edge Impulse Inc.",
      "description": "text",
      "name": "Time series",
      "blockType": "official"
    }
  ],
  "dspBlocks": [
    {
      "type": "spectral-analysis",
      "title": "Spectral features",
      "author": "Edge Impulse Inc.",
      "description": "text",
      "name": "Spectral analysis",
      "recommended": true,
      "experimental": true,
      "latestImplementationVersion": 1,
      "organizationId": 1,
      "organizationDspId": 1,
      "blockType": "official",
      "namedAxes": [
        {
          "name": "text",
          "description": "text",
          "required": true
        }
      ],
      "supportedTargets": [
        "brainchip-akd1000"
      ]
    }
  ],
  "learnBlocks": [
    {
      "type": "spectral-analysis",
      "title": "Spectral features",
      "author": "Edge Impulse Inc.",
      "description": "text",
      "name": "Spectral analysis",
      "recommended": true,
      "organizationModelId": 1,
      "publicProjectTierAvailability": "enterprise-only",
      "isPublicEnterpriseOnly": true,
      "blockType": "official",
      "displayCategory": "classical",
      "supportedTargets": [
        "brainchip-akd1000"
      ]
    }
  ]
}

Last updated

Was this helpful?