Two integration patterns
Valendata supports two fundamental ways to connect with external systems:Push: send data out
Use Workflow sinks, webhook steps, or outbound HTTP actions to deliver run output to any destination the moment a run completes. Your downstream tools receive fresh, structured JSON — no polling required.
Trigger: call Skills in
Every published Skill is a versioned REST endpoint. Any tool that can make an HTTP request — Zapier, Make, your own backend, a cron job — can trigger a Skill and consume its output.
Popular integrations
Zapier
Trigger Skills from any of Zapier’s 5,000+ connected apps, or use Skill output to kick off downstream Zaps. No code required.
Webhooks
POST run result payloads to any HTTP endpoint the instant a run completes. Retry logic and HMAC-SHA256 signature validation are built in.
Postgres
Sink Workflow output directly into a Postgres table. Define the table schema once and Valendata maps each run’s JSON output to the right columns automatically.
Slack
Receive a Slack message whenever a run completes or fails. Wire up channel alerts in the Workflow editor so your team knows the moment fresh data is ready — or something went wrong.
HubSpot & Salesforce
Enrich CRM contact and company records with live data from the web. Run a research Skill on a new deal and push the results back into HubSpot or Salesforce fields automatically.
Google Sheets
Pipe scraped or extracted data into a spreadsheet. Each Skill run can append rows to an existing sheet, keeping your team’s live dashboards and reports always up to date.
Notion
Populate Notion databases from web sources. Schedule a Skill to run nightly and watch your Notion workspace fill with fresh, structured records — no copy-paste required.
Airtable
Sync live web data into your Airtable base. Map Skill output fields to Airtable columns and let Valendata keep your base current on any schedule you choose.
Using the REST API as a universal connector
Every integration ultimately relies on Valendata’s REST API. If your tool of choice is not listed above, you can connect it directly — any system capable of making an HTTP POST request can trigger a Skill and receive structured JSON output.For tools not listed here, use the REST API directly. Pass your API key in the
Authorization: Bearer header, POST your parameters to https://api.valendata.com/v1/skills/run, and handle the JSON response however your system needs. If a tool supports custom HTTP requests — including low-code platforms, internal dashboards, or backend services — it already works with Valendata.