← Back to Productivity & Business

Finopsy

Cloud cost analysis and optimization

https://hub.toolweb.in/tools/finopsy/

Endpoints

GET /

Root

POST /api/finopsy/analyze

Analyze Cloud Costs

Request Body (JSON)

{
  "provider": "<string>",
  "credentials": "<object>",
  "sessionId": "<string>",
  "userId": "<integer>",
  "timestamp": "<string>",
  "analysisMonths": 3
}

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/tools/finopsy/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/finopsy/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/finopsy/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.