Get impulse including disabled blocks

Get impulse including disabled blocks

get

Retrieve the impulse for this project including disabled blocks. If you specify impulseId then that impulse is returned, otherwise the default impulse is returned.

Authorizations
Path parameters
projectIdintegerrequired

Project ID

Query parameters
impulseIdintegeroptional

Impulse ID. If this is unset then the default impulse is used.

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/impulse/all' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "impulse": {
    "id": 1,
    "name": "text",
    "inputBlocks": [
      {
        "id": 1,
        "type": "time-series",
        "name": "Time series",
        "title": "Time series",
        "windowSizeMs": 2004,
        "windowIncreaseMs": 1,
        "frequencyHz": 60,
        "classificationWindowIncreaseMs": 1,
        "padZeros": true,
        "imageWidth": 28,
        "imageHeight": 28,
        "resizeMode": "squash",
        "resizeMethod": "squash",
        "cropAnchor": "middle-center",
        "description": "Reduced learning rate and more layers",
        "createdBy": "createImpulse",
        "createdAt": "2025-03-27T19:17:21.559Z",
        "datasetSubset": {
          "subsetModulo": 1,
          "subsetSeed": 1
        }
      }
    ],
    "dspBlocks": [
      {
        "id": 1,
        "type": "spectral-analysis",
        "name": "Spectral features",
        "axes": [
          "accX"
        ],
        "title": "Spectral Analysis",
        "valuesPerAxis": 11,
        "input": 1,
        "description": "Reduced learning rate and more layers",
        "createdBy": "createImpulse",
        "createdAt": "2025-03-27T19:17:21.559Z",
        "implementationVersion": 1,
        "organization": {
          "id": 1,
          "dspId": 1
        },
        "customUrl": "text",
        "namedAxes": [
          {
            "name": "text",
            "description": "text",
            "required": true,
            "selectedAxis": "text"
          }
        ]
      }
    ],
    "learnBlocks": [
      {
        "id": 1,
        "type": "anomaly",
        "name": "NN Classifier",
        "dsp": [
          27
        ],
        "title": "Classification (Keras)",
        "description": "Reduced learning rate and more layers",
        "createdBy": "createImpulse",
        "createdAt": "2025-03-27T19:17:21.559Z"
      }
    ]
  }
}

Last updated

Was this helpful?