Back to Nodes

Famulor

Last updated Aug 27, 2026

n8n community node for Famulor Platform 2.0 - AI phone calls via API v1

22 Weekly Downloads
79 Monthly Downloads

Included Nodes

Famulor
Famulor Trigger

Description

Famulor for n8n

n8n
   
Famulor Toggle-Mark

Official n8n community node for Famulor Platform 2.0 (API v1).

![npm version](https://www.npmjs.com/package/n8n-nodes-famulor)
![License: MIT](https://opensource.org/licenses/MIT)

EnglishDeutschInstallation

This is a breaking 2.x package. It talks only to Platform v1. It does not support Famulor Classic 1.0 (https://app.famulor.de, integer IDs, /api/user/*).

English

Why this 2.x node?

New Famulor tenants live on Platform 2.0. Keys are not interchangeable: a Classic .de key against .io returns 401.

| | Classic 1.0 (removed) | Platform 2.0 (this package) |
| — | — | — |
| Host | https://app.famulor.de | https://app.famulor.io (or a verified whitelabel domain) |
| REST prefix | /api/user/* | /api/v1 |
| Auth | Legacy account key | Authorization: Bearer fam_… |
| IDs | Integers | UUIDs |
| Make call | phonenumber + variables | tonumber (E.164) + optional lead |
| Trigger | Unsigned assistants.webhook_url | Workspace webhook call.completed + X-Famulor-Signature |

There is no /api/v1 on app.famulor.de (404). This node hard-targets v1 and has no 1.0 compatibility mode.

Credentials

1. Open https://app.famulor.io/ and create a service-account API key (fam_…).
2. In n8n, create credentials of type Famulor API.
3. Paste the API key.
4. Leave Base URL as https://app.famulor.io, or set a verified custom domain for whitelabel. Tenant is in the key, not the host. Do not use app.famulor.de. Do not send X-Workspace-Id / X-Tenant headers.

Operations

Call

  • MakePOST /api/v1/calls. Required: assistant UUID + tonumber (E.164). Optional: phonenumberid, lead (JSON object). The node does not send variables, fromnumber, or lead_id.
  • GetGET /api/v1/calls/{id} (transcript + analysis).
  • Get ManyGET /api/v1/calls with optional filters (assistantid, campaignid, status, direction, time range, search).
  • Assistant

  • Get ManyGET /api/v1/assistants
  • GetGET /api/v1/assistants/{id}
  • CreatePOST /api/v1/assistants (name, optional systemprompt / firstmessage)
  • Campaign

  • Get ManyGET /api/v1/campaigns
  • CreatePOST /api/v1/campaigns (name, optional assistant_id)
  • Call Completed trigger

    The trigger is a signed workspace webhook, not an unsigned assistant URL.

    1. Add Famulor Trigger and copy its Production URL.
    2. In Famulor go to Settings → Webhooks, create a webhook for event call.completed, and paste the n8n URL.
    3. Paste the workspace webhook secret into the trigger Webhook Secret field.
    4. Incoming POSTs must include X-Famulor-Signature: sha256=<hmacsha256(rawbody, secret).hex>. The MAC covers the raw body only (no timestamp). Invalid signatures are rejected with HTTP 401.

    Optional: pick an assistant to ignore events from other assistants.

    Installation

    Follow the n8n community nodes installation guide.

    Package name: n8n-nodes-famulor (2.x).

    Compatibility

  • Minimum Node.js: 20.15
  • n8n: current community-node hosts (n8n 1.x)
  • Breaking changes from 1.x

  • Default host is https://app.famulor.io. app.famulor.de is rejected.
  • All IDs are UUID strings.
  • Make Call uses tonumber + optional lead. Classic variables / phonenumber / fromnumber / leadid are gone.
  • Trigger requires HMAC verification. Pasting the n8n URL into assistants.webhook_url is not supported.
  • Classic resources (SMS, tools, user, AI generate-reply, conversations, integer leads) are removed.
  • Deutsch

    Warum dieser 2.x-Node?

    Neue Famulor-Mandanten laufen auf Platform 2.0. Schlüssel sind nicht austauschbar: ein Classic-.de-Key gegen .io liefert 401.

    | | Classic 1.0 (entfernt) | Platform 2.0 (dieses Paket) |
    | — | — | — |
    | Host | https://app.famulor.de | https://app.famulor.io (oder verifizierte Whitelabel-Domain) |
    | REST-Prefix | /api/user/* | /api/v1 |
    | Auth | Legacy-Account-Key | Authorization: Bearer fam_… |
    | IDs | Integer | UUIDs |
    | Anruf starten | phonenumber + variables | tonumber (E.164) + optionales lead |
    | Trigger | Unsignierte assistants.webhook_url | Workspace-Webhook call.completed + X-Famulor-Signature |

    Auf app.famulor.de gibt es kein /api/v1 (404). Dieser Node spricht nur v1, ohne 1.0-Kompatibilitätsmodus.

    Anmeldedaten

    1. Unter https://app.famulor.io/ einen Service-Account-API-Key (fam_…) erzeugen.
    2. In n8n Anmeldedaten vom Typ Famulor API anlegen.
    3. Den API-Key einfügen.
    4. Base URL auf https://app.famulor.io lassen oder eine verifizierte Custom Domain für Whitelabel setzen. Der Mandant steckt im Key, nicht im Host. Nicht app.famulor.de verwenden. Keine Header X-Workspace-Id / X-Tenant.

    Operationen

    Call

  • MakePOST /api/v1/calls. Pflicht: Assistenten-UUID + tonumber (E.164). Optional: phonenumberid, lead (JSON-Objekt). Der Node sendet keine Felder variables, fromnumber oder lead_id.
  • GetGET /api/v1/calls/{id} (Transkript + Analyse).
  • Get ManyGET /api/v1/calls mit optionalen Filtern.
  • Assistant

  • Get Many / Get / Create gegen /api/v1/assistants.
  • Campaign

  • Get Many / Create gegen /api/v1/campaigns.
  • Trigger „Call completed“

    Der Trigger ist ein signierter Workspace-Webhook, keine unsignierte Assistenten-URL.

    1. Famulor Trigger hinzufügen und die Production-URL kopieren.
    2. In Famulor unter Settings → Webhooks einen Webhook für call.completed anlegen und die n8n-URL eintragen.
    3. Das Workspace-Webhook-Secret im Feld Webhook Secret hinterlegen.
    4. Eingehende POSTs müssen X-Famulor-Signature: sha256=<hmacsha256(rawbody, secret).hex> senden. Die Signatur gilt nur für den Raw Body (kein Timestamp). Ungültige Signaturen werden mit HTTP 401 abgelehnt.

    Installation

    Siehe die n8n-Community-Nodes-Installationsanleitung.

    Paketname: n8n-nodes-famulor (2.x).

    Resources

  • Famulor Platform
  • Famulor website
  • n8n community nodes

Classic 1.0 docs on docs.famulor.io / docs.famulor.de still describe the old API. This package follows Platform 2.0 / API v1.