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 aPOST 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 anX-Stairoids-Signature header. Verify it to confirm the request genuinely came from Stairoids and hasn’t been tampered with.
The signature is computed as:
- Node.js
- Python
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 anX-Api-Key header. See the API Reference and Authentication.
