Developer Resources

Build on Shielva Intelligence Platform with comprehensive APIs, SDKs, and integration guides. Everything you need to integrate and extend our platform.

API Documentation

RESTful APIs with OpenAPI 3.1 specification. Interactive documentation and code examples.

Authentication

OAuth 2.0, JWT tokens, and user management

  • /api/v1/auth/login
  • /api/v1/auth/register
  • /api/v1/auth/refresh

AI Agents

Agent execution, workflow management, and RAG

  • /api/v1/agents/agents
  • /api/v1/agents/workflows
  • /api/v1/agents/rag

Analytics

Healthcare, FinTech, Retail, and HR analytics APIs

  • /api/v1/healthcare
  • /api/v1/fintech
  • /api/v1/retail
  • /api/v1/hr

SDKs & Libraries

Official SDKs and libraries to integrate Shielva Intelligence Platform into your applications.

Python

Python SDK

Official Python SDK for Shielva Intelligence Platform

pip install shielva-sdk
JavaScript

JavaScript SDK

TypeScript/JavaScript SDK for web and Node.js applications

npm install @shielva/sdk
Any

REST API

Direct REST API access with any HTTP client

No installation required

Code Examples

Real-world code examples to get you started quickly.

Python: Execute an AI Agent

from shielva import Client

client = Client(api_key="your-api-key")

response = client.agents.execute(
    agent_id="email-processor",
    input_data={"email": "..."}
)

print(response.output)

JavaScript: Authenticate and Call API

import { ShielvaClient } from '@shielva/sdk';

const client = new ShielvaClient({
  apiKey: 'your-api-key'
});

const result = await client.healthcare.predictBurnout({
  employee_id: 'emp-123',
  workload_hours: 50,
  stress_indicators: [...]
});

console.log(result.risk_score);