Skip to main content
Not every tool in your stack has a native Stairoids integration — and that’s fine. For anything else, Stairoids can send action triggers out to your own endpoint via outgoing webhooks, and you can pull your scored data with the read-only API. Wire these up directly, or through a no-code platform like n8n, Make, or Zapier.
There is currently no public endpoint for pushing signals into Stairoids over the API. Signals arrive through native integrations and incoming automations. This page covers receiving action triggers out of Stairoids and reading your data.

Receive an action trigger via webhook

Configure an outgoing automation in Stairoids with the action type Webhook. When the automation fires, Stairoids sends a POST request to the URL you configure with the full signal and contact context. Use this when you want a non-native tool to respond to something that happened inside Stairoids. When to use this pattern:
  • You want to trigger an action in a tool Stairoids doesn’t natively support
  • You’re building a custom integration that needs to receive structured event data
  • You want to log Stairoids automation events into your own data store

Payload

Verifying the HMAC-SHA256 signature

Every outgoing webhook includes an X-Stairoids-Signature header. Verify it to confirm the request genuinely came from Stairoids and hasn’t been tampered with. The signature is computed as:
Your webhook secret is shown once when you configure the Webhook action in Stairoids. Store it securely. Here’s how to verify it:

Pull your data with the read-only API

To read your scored companies, buying-signal activity, funnel, attribution, and LinkedIn ad engagement from your own systems, use the read-only public API. It authenticates with an X-Api-Key header. See the API Reference and Authentication.
Prefer no code? Use n8n, Make, or Zapier to receive Stairoids outgoing webhooks with their built-in Webhook nodes, then fan out to tools like Slack, Notion, or Google Sheets.