Actions

List actions

Returns released prebuilt Flora actions that can be executed by the public API. Action identifiers are raw slugs such as rotate-image, not action-prefixed IDs.

get/actions

Response

Actions returned.

Example response

{
  "actions": [
    {
      "action_id": "split-text",
      "name": "Rotate Image",
      "description": "Rotate an image by a fixed angle.",
      "inputs": [
        {
          "name": "image"
        }
      ],
      "outputs": [
        {
          "name": "image"
        }
      ],
      "params": [
        {
          "key": "angle",
          "type": "select",
          "label": "Angle",
          "info_tooltip": "Rotation angle in degrees."
        }
      ]
    }
  ]
}

Changes

Changed in 1 of the 8 revisions of this API.1