call_engine
Call a ReefAPI engine action — POST //v1/ with params. Returns the uniform
{ ok, data, meta, error } envelope. Get param names from get_engine_schema first. Needs YOUR
ReefAPI key (the local server reads REEFAPI_KEY; the hosted server reads the Authorization: Bearer ak_live_... header you configure on the connection). Get a key at https://reefapi.com.
Failed calls cost no credits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | The action to run on that engine (e.g. 'search'), as listed by get_engine_schema. | |
| engine | Yes | The engine's name to call (e.g. 'zillow'), as returned by search_engines or get_catalog. | |
| params | No | The action's parameters as a JSON object, e.g. {'query': 'NYC'}. Get the valid param names and values from get_action_schema first. Omit or pass null for actions that take none. |