# Cloud World Model Right-Sizing Hint

> Cloud World Model Right-Sizing Hint is a paid API for AI agents from www.cloudworldmodel.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns right-sizing recommendations for over-provisioned nodes in a cloud simulation, including estimated cost savings percentages.

## Facts

- Endpoint: GET https://www.cloudworldmodel.ai/api/simulations/857848a5-a28e-4dfa-aa2e-0a72cf999328/right-sizing-hint
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cloud-world-model-right-sizing-hint-4108e62d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AlyWKvP5Fr5lTbEAjbjxb

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cloud-world-model-right-sizing-hint-4108e62d
```

Example prompt: Check simulation e6c6e6f7-3893-4a1c-bb37-e49558245a04 and tell me which nodes are over-provisioned and how much I could save by right-sizing them.

## When to prefer this

Use this endpoint when you need actionable cost-reduction recommendations for a running cloud simulation on cloudworldmodel.ai, specifically to identify over-provisioned nodes and quantify savings. Prefer this over the autoscaling threshold endpoint when the goal is cost optimization rather than scaling policy tuning.

## Known failure modes

- Simulation ID not found or expired — returns 404
- Simulation not in a valid state to generate hints — returns 400 or empty hints array
- Authentication or payment failure — returns 402 or 401
- Simulation has no over-provisioned nodes — returns empty hints array

## How this service works

Get right-sizing recommendations for over-provisioned nodes with estimated savings percentages.

## Output

Returns an array of right-sizing hints for over-provisioned nodes in the specified simulation, each including recommended instance size changes and estimated cost savings percentages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "hints": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cloud-world-model-right-sizing-hint-4108e62d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.cloudworldmodel.ai](https://www.zero.xyz/host/www.cloudworldmodel.ai/llms.txt)
