Skip to main content
The Capital Reformation: 18 Theses on the death of operational wasteRead Now →
AAS

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.

Read the Docs

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
View Full Documentation
quickstart.ts
// 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.

v2

Portfolio API

Create, read, update, and manage capital portfolios and their initiatives.

24 endpoints

v2

Health Scoring API

Access real-time health scores, risk assessments, and trend analysis for any initiative.

18 endpoints

v2

Drift Detection API

Monitor budget drift, detect anomalies, and receive proactive governance alerts.

12 endpoints

v2

Governance API

Configure governance rules, approval workflows, and automation policies.

30 endpoints

v1

Reports API

Generate, schedule, and export reports in PDF, CSV, and JSON formats.

15 endpoints

v2

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.

P

Python

v3.2.0

pip install agentaas-sdk
N

Node.js

v3.1.4

npm install @agentaas/sdk
G

Go

v2.8.1

go get github.com/agentaas/sdk-go
J

Java

v3.0.2

com.agentaas:sdk:3.0.2
R

Ruby

v2.4.0

gem install agentaas
C

C#

v2.6.1

dotnet add package AgentAAS.SDK

Changelog

Recent API Updates

v2.14.0March 3, 2026
  • Added batch operations for Portfolio API
  • New forecast endpoints in Health Scoring API
  • Webhook retry configuration support
v2.13.0February 18, 2026
  • GraphQL API now in public beta
  • Added cursor-based pagination across all endpoints
  • New SDK methods for drift analysis
v2.12.0February 1, 2026
  • 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.

Explore the Docs