Search Homey flow cards
homey_flowcards_searchSearch Homey flow cards by keyword, device, owner, or type. Retrieve card IDs and declared arguments to select the right building block for automation flows.
Instructions
Finds the flow cards available on this Homey. Flow cards are the building blocks of a flow: a trigger card starts it, condition cards decide whether it continues, and action cards do something. This Homey exposes hundreds of cards, so at least one filter is required: a search term, a device, an owning app or manager, or an owner uri. An unfiltered call is refused. Results carry only enough to choose a card: the id under cardId, which every other flow tool takes under that same name, and the arguments the card declares under arguments, with the name and type of each. Call homey_flowcard_describe with that cardId for the rest of each argument, which is what you need before using the card in a flow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Restrict to trigger, condition or action cards. | |
| limit | No | Maximum number of cards to return. Defaults to 25. | |
| owner | No | Part of the owning app or manager name, for example "Sonos" or "Notifications". | |
| query | No | Words to look for in the card title, its short id, its hint or its owner name. For example "turn on", "motion", "notification". | |
| device | No | A device name or id. Returns only the cards that device contributes itself, for example its own on/off action. | |
| ownerUri | No | An exact owner uri, for example homey:manager:notifications or homey:device:<uuid>. | |
| includeDeprecated | No | Include cards their app has marked deprecated. Off by default. |