The n8n Webhook API is an Agency-only feature. Contact Linkstonic support to enable it on your account.
What you can trigger
Each webhook call to Linkstonic specifies an action type. The following actions are supported:- track — Run AI tracking for a specific brand and keyword combination. Use this to pull fresh visibility data on demand or on a schedule.
- analyze — Run a TrueTrace audit for a URL or brand. Use this to assess how a page or brand is represented across AI platforms.
- report — Generate and export a summary report for a brand or keyword set. Use this to produce client-ready outputs automatically.
- monitor — Check the current AI visibility status for a tracked entity. Use this as a lightweight health check without triggering a full tracking run.
Callback URL support
When you trigger an action via n8n, Linkstonic can send the results back to your workflow asynchronously via a callback URL. You provide the callback URL as part of the webhook payload, and once Linkstonic completes the action, it sends the output to that URL. This means your n8n workflow does not need to poll for results. Instead, it waits for Linkstonic to push the data back, which keeps your workflows clean and avoids unnecessary API calls.Example use cases
Weekly AI visibility reports
Schedule a weekly n8n workflow that triggers a report action in Linkstonic and emails the output to your team automatically.
Audit on site update
Trigger an analyze action in Linkstonic whenever a client’s site is updated, so you always have a fresh TrueTrace audit on hand.
Sync to Google Sheets
Use a track action with a callback URL to receive results in n8n, then write them directly to a Google Sheet for ongoing tracking.
Slack visibility threshold alert
Use a monitor action on a schedule. If AI visibility drops below a threshold, trigger an n8n Slack node to alert your team.
How to configure the n8n integration
Upgrade to Agency plan
The n8n Webhook API requires an Agency plan. Confirm your plan status in Account Settings, or contact support to upgrade.
Get your API credentials from Linkstonic
In your Linkstonic dashboard, go to Settings → API and copy your API key. You will use this to authenticate webhook requests from n8n.
In n8n, add an HTTP Request node
Open your n8n workflow and add an HTTP Request node. Set the method to
POST and enter the Linkstonic webhook endpoint URL.Configure the webhook endpoint with your action type
In the request body, specify your action type (
track, analyze, report, or monitor) along with the required parameters such as brand name, keyword, or URL.Add an optional callback URL
If you want results pushed back to your workflow, add a
callback_url field to the request body. Point it to an n8n Webhook node that will receive and process the response.