Developer API
The API for
cloud economy.
Connect your internal tools, build automated remediation bots, or sync enterprise-wide spending data directly into your data warehouse.
RESTful Interface
Standard JSON endpoints with predictable resource-oriented URLs and bearer token auth.
Reference DocsReal-time Webhooks
Get notified instantly when a cost anomaly occurs or a remediation step is successfully implemented.
Setup HooksCLI Engine
Automate optimization directly from your developer terminal. Built for DevOps automation.
Install CLIBuilt for
automation scale.
Our API handles millions of requests per day. We provide official SDKs for Node.js, Go, and Python to get you integrated in minutes.
Stateless Security
Bearer token authentication with granular scope control.
Rate Limiting
Enterprise-grade concurrency for high-density sync workloads.
Historical Data
Query up to 5 years of processed infrastructure metadata.
fetch-savings.ts
import { OggyClient } from '@oggycloud/sdk';
const oggy = new OggyClient({ apiKey: '...' });
// Fetch pending optimizations
const results = await oggy.recommendations.list();
console.log(`Identified waste: $` + results.total);
_Ready to optimize...