Developer Platform
Build on AgentAAS OS
Powerful REST APIs, official SDKs in 6 languages, webhooks, and comprehensive documentation. Everything you need to integrate capital governance into your workflows.
121
API Endpoints
99.99%
API Uptime
45ms
Avg Latency
6
Official SDKs
Quick Start
Up and Running in Minutes
Install our SDK, configure your API key, and start querying portfolio health scores, drift alerts, and governance rules with just a few lines of code.
- RESTful API with consistent, predictable patterns
- OAuth 2.0 and API key authentication
- Comprehensive error codes and rate limiting
- Sandbox environment for safe testing
- GraphQL API available in beta
// Initialize the AgentAAS OS client
import { AgentAAS } from '@agentaas/sdk';
const client = new AgentAAS({
apiKey: process.env.AGENTAAS_API_KEY,
environment: 'production',
});
// Get health scores for a portfolio
const portfolio = await client.portfolios.get('pf_abc123');
const healthScores = await client.health.scores({
portfolioId: portfolio.id,
granularity: 'initiative',
includeForecasts: true,
});
console.log(`Portfolio: ${portfolio.name}`);
console.log(`Overall Health: ${healthScores.overall}`);
console.log(`At-Risk Initiatives: ${healthScores.atRisk}`);
// Set up drift detection webhook
await client.webhooks.create({
url: 'https://your-app.com/webhooks/drift',
events: ['drift.detected', 'drift.resolved'],
filters: { portfolioId: portfolio.id },
});APIs
Comprehensive API Suite
Six purpose-built APIs covering every aspect of enterprise capital governance.
Portfolio API
Create, read, update, and manage capital portfolios and their initiatives.
24 endpoints
Health Scoring API
Access real-time health scores, risk assessments, and trend analysis for any initiative.
18 endpoints
Drift Detection API
Monitor budget drift, detect anomalies, and receive proactive governance alerts.
12 endpoints
Governance API
Configure governance rules, approval workflows, and automation policies.
30 endpoints
Reports API
Generate, schedule, and export reports in PDF, CSV, and JSON formats.
15 endpoints
Admin API
Manage users, roles, permissions, SSO configuration, and audit logs.
22 endpoints
SDKs
Official Client Libraries
First-class SDK support for the languages your team already uses.
Python
v3.2.0
pip install agentaas-sdkNode.js
v3.1.4
npm install @agentaas/sdkGo
v2.8.1
go get github.com/agentaas/sdk-goJava
v3.0.2
com.agentaas:sdk:3.0.2Ruby
v2.4.0
gem install agentaasC#
v2.6.1
dotnet add package AgentAAS.SDKChangelog
Recent API Updates
- ●Added batch operations for Portfolio API
- ●New forecast endpoints in Health Scoring API
- ●Webhook retry configuration support
- ●GraphQL API now in public beta
- ●Added cursor-based pagination across all endpoints
- ●New SDK methods for drift analysis
- ●Rate limit headers now included in all responses
- ●Added idempotency key support
- ●New Admin API endpoints for audit log export
Start Building Today
Get your free API key and start integrating enterprise capital governance into your applications.