# AMNT Subscription Analyzer

> AMNT Subscription Analyzer 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).

Analyzes a list of SaaS subscriptions to find duplicates, normalize plans, estimate ROI, rank services, and recommend consolidation and cost-saving actions.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/mint_anchor/subscription-analyzer
- 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/amnt-subscription-analyzer-9a9f586b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KLYWpc8rRY3padCbP2lOf

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 amnt-subscription-analyzer-9a9f586b -d '<json body>'
```

Example prompt: I have a list of our company's SaaS subscriptions — Slack Pro, Notion Team, Notion Personal, Zoom Business, Google Meet, Loom, and Figma — can you analyze them for duplicates, estimate ROI, rank them, and tell me what we should consolidate or cut to save money?

## When to prefer this

Use this endpoint when you need a single-call, no-account-required analysis of a SaaS subscription portfolio — especially useful for IT audits, budget reviews, or post-merger tool consolidation where you want actionable deduplication and savings recommendations without setting up a dedicated SaaS management platform.

## Known failure modes

- Vague or incomplete subscription list yields generic recommendations without specific savings figures
- Missing pricing data prevents accurate ROI estimation
- Very large subscription lists may produce truncated results
- Ambiguous service names may not be correctly normalized or matched
- Payment failure via x402 results in no response returned

## How this service works

Subscription Analyzer - Analyze a list of SaaS subscriptions to find duplicates, normalize plans, estimate ROI, rank services, and recommend consolidation and savings actions.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

Returns a structured analysis including identified duplicate subscriptions, normalized plan names, estimated ROI scores per service, a ranked list of subscriptions by value, and specific consolidation and cancellation recommendations with projected savings.

## 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/amnt-subscription-analyzer-9a9f586b/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)
