{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Any REST API — utility.api recipe",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Call it",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {}
      },
      "position": {
        "x": 0,
        "y": 23
      }
    },
    {
      "id": "call",
      "type": "utility.api",
      "label": "Airtable recipe → request",
      "category": "io",
      "config": {
        "service": "airtable",
        "operation": "list",
        "baseUrl": "https://httpbin.org/anything",
        "authType": "none",
        "authToken": "",
        "expectOk": false,
        "params": {
          "base": "appDemo",
          "table": "Leads"
        }
      },
      "position": {
        "x": 530,
        "y": 23
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Response",
      "category": "utility",
      "config": {
        "message": "API answered: {{ $json }}"
      },
      "position": {
        "x": 1060,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "call",
      "targetPort": "input"
    },
    {
      "id": "e1",
      "sourceNodeId": "call",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "The universal SaaS client: a RECIPE (service + operation + params) builds the real request — here the Airtable list recipe fired at a public echo host so you can see the URL it builds (needs internet). The n8n importer maps unknown SaaS nodes onto this node."
  }
}