Integration
The Heeb node runs the LLM Mentions API inside an n8n workflow. Give it a prompt, the brand to track and one or more models, and it submits the query, waits for every model to answer, then returns the per-model answer, its sources and citations, the ranked mentions it found, and the combined visibility and sentiment scores as workflow items.
@heebai/n8n-nodes-heebCommunity nodes install on self-hosted n8n. The node is not available on n8n Cloud.
x-api-key header, and the credential test sends one call to confirm the key works.https://heeb.ai unless you route through your own proxy.Submits one query and, with Wait for Completion on, returns the settled result. Jobs settle in 30 seconds to 2 minutes.
| Parameter | What it sets |
|---|---|
| Prompt | The buyer question every model answers. |
| Entity Name | The brand to track inside those answers. |
| Entity URL | The official URL for that brand. |
| Models | Comma-separated model IDs. The sellable catalog changes over time, so take the current IDs from the pricing page. |
| Country Code | ISO country code for the geographic context. Defaults to US. |
| Wait for Completion | On by default: the node polls until the job settles and returns the whole result. Turn it off to get the job ID straight away. |
| Timeout | Seconds to keep polling before the node gives up. Defaults to 120. |
| Poll Interval | Seconds between result checks while polling. Defaults to 5. |
Fetches a job by its ID. It reports the job as pending while the models are still answering, and returns the aggregated result once the job settles.
| Parameter | What it sets |
|---|---|
| Job ID | The job ID that Submit Query returned. |
Running a query from the node costs the same as running it over the REST API.
See pricingA weekly schedule runs one query and posts to Slack when visibility drops below your threshold.
Download the JSONThe blog post builds the workflow node by node and reads the scores it returns.
Read the post