Skip to main content

Start building

Build with UI

Describe what you want; the Kadoa Assistant builds the workflow.

Build with Code

Python and Node.js SDKs, or the REST API.

MCP Server

Use Kadoa from ChatGPT, Claude, Cursor, and other AI tools.

Explore the platform

Workflows

The core unit: a source, a schema, and a schedule.

Data Quality

Per-field validation rules on every run.

Change Detection

Get only what changed, as it changes.

Templates

Reuse a prompt, schema, and notifications.

Notifications

Route events to email, Slack, and webhooks.

Integrations

Snowflake, cloud storage, Google Sheets, and more.

Quick example

import { KadoaClient } from '@kadoa/node-sdk';

const client = new KadoaClient({ apiKey: 'YOUR_API_KEY' });
const result = await client.extraction.run({
  urls: ["https://sandbox.kadoa.com/ecommerce"]
});

console.log(result.data);