API Reference
Build powerful integrations with Intuidy's software platform 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: 'your_api_key_here',
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/executeExecute a workflow with specified parameters
GET
/api/v1/systems/statusGet real-time status of all connected systems
POST
/api/v1/data/unifyUnify data from multiple sources
GET
/api/v1/analytics/insightsRetrieve AI-powered insights and recommendations