← Back to Security & Essentials

Multi-Cloud Service Mapper

AI-powered workload analysis & cloud provider recommendation across Azure, AWS & Google Cloud

https://hub.toolweb.in/security/servicemapper/

Endpoints

GET /

Root

POST /api/cloud-mapper/analyze

Analyze Workload

Request Body (JSON)

{
  "workload_description": "<string>",
  "selected_services": [],
  "current_cloud": "<string>",
  "priorities": [],
  "team_size": "<string>",
  "industry": "<string>",
  "sessionId": "<string>",
  "userId": "<string>",
  "timestamp": "<string>"
}
GET /api/cloud-mapper/services

Get Services

GET /api/cloud-mapper/providers

Get Providers

Quick Start

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

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