# AWS IAM Risk Score Analyzer

> AWS IAM Risk Score Analyzer is a paid API for AI agents from x402-hono-api.inraby.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Analyzes an AWS IAM policy document and returns a focused risk score and severity summary highlighting dangerous permissions or misconfigurations.

## Facts

- Endpoint: POST https://x402-hono-api.inraby.workers.dev/api/v1/iam-risk-score
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aws-iam-risk-score-analyzer-0e8f655a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KZTdYiw0gPRp6M8k-8h6v

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 aws-iam-risk-score-analyzer-0e8f655a -d '<json body>'
```

Example prompt: Can you score this AWS IAM policy for security risk and give me a severity summary? Here's the policy: {"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":"*","Resource":"*"}]}

## When to prefer this

Use this endpoint when you need a quick, focused risk score and severity summary specifically for AWS IAM policies, rather than a broad multi-cloud policy validator. It is ideal for CI/CD pipelines, security review automation, or agent-driven cloud audits where a numeric risk signal is needed for an IAM document.

## Known failure modes

- Invalid or malformed IAM policy JSON returns a parse or validation error
- Missing policyText field results in a 400 bad request
- Policy too large may hit payload limits
- Payment not processed (x402) results in a 402 Payment Required response
- Service unavailable on Cloudflare Workers returns a 503

## How this service works

Return a focused AWS IAM risk score and severity summary for a submitted IAM policy document.

## Output

Returns a focused risk score (likely numeric or categorical) and a severity summary indicating how dangerous the submitted IAM policy is, including details about overly permissive rules, wildcard usage, or other high-risk patterns.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "policyText": {
   "type": "string",
   "description": "AWS IAM policy JSON"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aws-iam-risk-score-analyzer-0e8f655a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-hono-api.inraby.workers.dev](https://www.zero.xyz/host/x402-hono-api.inraby.workers.dev/llms.txt)
