# Serverless AWS Architecture Designer

> Serverless AWS Architecture Designer is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Generates production-ready serverless AWS architecture plans from product requirements, including service selection, architecture diagrams, security guidance, cost estimates, IaC tips, and next steps.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/arctic_salmon/serverless-aws-design
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/serverless-aws-architecture-designer-de0c1c31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XVQi79Ii-Bz20oZb1xsLS

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 serverless-aws-architecture-designer-de0c1c31 -d '<json body>'
```

Example prompt: Design a production-ready serverless AWS architecture for a real-time ride-hailing backend that needs user authentication, trip matching, live location updates, and payment processing — include service choices, a diagram, security recommendations, estimated costs, and IaC tips.

## When to prefer this

Choose this endpoint when you need a fast, AI-generated serverless AWS architecture blueprint from a plain-English product description, without requiring a cloud consultant or AWS console session. Ideal for early-stage planning, proof-of-concept scoping, or getting a structured starting point for IaC. Prefer over generic LLM prompting when you want structured output covering services, security, costs, and IaC in one shot.

## Known failure modes

- Vague or incomplete prompt may result in generic or overly broad architecture recommendations
- Very complex multi-region or compliance-heavy requirements may exceed single-response detail
- Prompt too short or missing key constraints (scale, data types, budget) leads to assumptions in output
- Cost estimates are approximate and may not reflect current AWS pricing

## Output

A structured text response containing: recommended AWS services with justifications, a textual or ASCII architecture diagram, security considerations, estimated costs, Infrastructure-as-Code tips (e.g. for CDK, Terraform, or SAM), and suggested next steps for implementation.

## 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": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/serverless-aws-architecture-designer-de0c1c31/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.amnt.io](https://www.zero.xyz/host/www.amnt.io/llms.txt)
