Service healthcheck — HTTP Request
Poll a vendor's status API and act on the answer (needs internet; loopback targets are SSRF-guarded by default — set FLOWDROME_HTTP_ALLOWLIST for internal services). Auth headers, retries and response capture are all on the node.
What’s inside
3 nodes — every type links to its full reference page.
| Step | Node | Type |
|---|---|---|
| Check request | Inject | input.inject |
| GET vendor status | HTTP Request | output.http-request |
| Status board | Console | utility.console |
Import it
- Studio → Import — paste the JSON below (or the URL
/docs/templates/service-healthcheck-http-request.json). - Or ask the AI Copilot with the JSON pasted after the phrase:
import this workflow json into a new workflow named "Service healthcheck — HTTP Request" - Any credentials the nodes need are
${credential.…}references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 3 node types)
{
"schemaVersion": "flowdrome.workflow.v1",
"id": "",
"name": "Service healthcheck — HTTP Request",
"version": "0",
"status": "draft",
"nodes": [
{
"id": "seed",
"type": "input.inject",
"label": "Check request",
"category": "trigger",
"config": {
"contentType": "application/json",
"payload": {
"service": "github"
}
},
"position": {
"x": 0,
"y": 23
}
},
{
"id": "ping",
"type": "output.http-request",
"label": "GET vendor status",
"category": "output",
"config": {
"method": "GET",
"url": "https://www.githubstatus.com/api/v2/status.json",
"contentType": "application/json",
"authType": "none",
"authToken": "",
"expectOk": true,
"includeResponseBody": true
},
"position": {
"x": 530,
"y": 23
}
},
{
"id": "out",
"type": "utility.console",
"label": "Status board",
"category": "utility",
"config": {
"message": "vendor status: {{ $json }}"
},
"position": {
"x": 1060,
"y": 0
}
}
],
"edges": [
{
"id": "e0",
"sourceNodeId": "seed",
"sourcePort": "output",
"targetNodeId": "ping",
"targetPort": "input"
},
{
"id": "e1",
"sourceNodeId": "ping",
"sourcePort": "output",
"targetNodeId": "out",
"targetPort": "input"
}
],
"triggers": [
{
"id": "t0",
"nodeId": "seed"
}
],
"meta": {
"snippets": [],
"source": "template-gallery",
"description": "Poll a vendor's status API and act on the answer (needs internet; loopback targets are SSRF-guarded by default — set FLOWDROME_HTTP_ALLOWLIST for internal services). Auth headers, retries and response capture are all on the node."
}
} Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: service-healthcheck-http-request.json.