# Cloud World Model – AI Job Results

> Cloud World Model – AI Job Results 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-10).

Retrieves the results of a completed asynchronous AI job (e.g. right-sizing recommendations) from a cloud infrastructure simulation

## Facts

- Endpoint: GET https://www.cloudworldmodel.ai/api/ai-jobs/%7BjobId%7D/results
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cloud-world-model-ai-job-results-bc678fee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bfMzOUDRmPjHOjhveTDF_

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-ai-job-results-bc678fee
```

Example prompt: Pull the results for my Cloud World Model simulation job ID 'job-abc123' — I want to see the right-sizing recommendations and estimated cost savings for my AWS environment.

## When to prefer this

Use this endpoint after submitting an asynchronous AI simulation job on Cloud World Model and waiting for it to complete. This is the polling/retrieval step — not for initiating a new simulation or injecting traffic. Best when you have a jobId from a prior job-submission call and need to retrieve structured cost-optimization output.

## Known failure modes

- Job ID not found or invalid — returns 404 or empty result
- Job not yet completed — may return a pending status rather than results
- Payment not processed — x402 payment required before results are returned
- Malformed jobId path parameter — results in 400 bad request
- Simulation failed upstream — results may be empty or contain error metadata

## How this service works

Simulate AWS, GCP, Azure, OCI, and DigitalOcean cloud infrastructure without provisioning real resources. Built for Canvas Cloud AI learners and agents.

## Output

A JSON object containing an array of cost-saving suggestions (plain-language strings) and a ranked list of recommendations, each with a name, rank, description, and estimated cost savings percentage.

## 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",
     "required": [],
     "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": {
      "suggestions": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "recommendations": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "suggestions": [
   "Downsize web-1 from c5.2xlarge to c5.xlarge — 48% cost reduction at current load."
  ],
  "recommendations": [
   {
    "name": "Right-size compute",
    "rank": 1,
    "description": "Downsize web-1",
    "costSavingsPercent": 48
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cloud-world-model-ai-job-results-bc678fee/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)
