API Reference

Build powerful integrations with Intuidy's AI Operating System using our comprehensive API.

RESTful API

Clean, intuitive REST endpoints with JSON responses

Real-time Webhooks

Subscribe to events and get instant notifications

Secure Authentication

OAuth 2.0 and API key authentication

Comprehensive Docs

Detailed guides, examples, and SDKs

Quick Start

// Initialize the Intuidy client
import { Intuidy } from '@intuidy/sdk';

const client = new Intuidy({
  apiKey: process.env.INTUIDY_API_KEY,
  environment: 'production'
});

// Execute a workflow
const result = await client.workflows.execute({
  workflowId: 'wf_123',
  parameters: {
    input: 'data'
  }
});

console.log(result);

Core Endpoints

POST
/api/v1/workflows/execute

Execute a workflow with specified parameters

GET
/api/v1/systems/status

Get real-time status of all connected systems

POST
/api/v1/data/unify

Unify data from multiple sources

GET
/api/v1/analytics/insights

Retrieve AI-powered insights and recommendations