# Meeting Decisions Extractor

> Meeting Decisions Extractor is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Extracts a structured JSON list of decisions, assigned owners, and deadlines from a meeting transcript, with source excerpts and confidence scores.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/amnt/meeting-decisions-extractor
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/meeting-decisions-extractor-78f7c908
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5DFY7v60m4YCbr8MemJkR

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 meeting-decisions-extractor-78f7c908 -d '<json body>'
```

Example prompt: Extract all the decisions, owners, and deadlines from this meeting transcript and give me a structured JSON list with confidence scores for each item: [paste transcript here].

## When to prefer this

Choose this endpoint when you have a raw meeting transcript and need a machine-readable, structured list of decisions with accountability metadata (owners, deadlines, confidence, source quotes). It is purpose-built for meeting content and returns richer metadata than a generic summarizer — particularly useful for automated follow-up workflows, CRM logging, or project management integrations where structured JSON output is required.

## Known failure modes

- Transcript too short or lacks discernible decisions — returns empty decisions array
- Ambiguous ownership in transcript — owner field may be null or low-confidence
- No explicit deadlines mentioned — deadline fields returned as null
- Overly long transcript may hit input limits — truncation or error response
- Payment failure via x402 — no result returned
- Malformed or non-text input — returns error

## How this service works

Meeting Decisions Extractor - Turn meeting transcripts into a concise JSON list of decisions, assigned owners and deadlines, with source excerpts and confidence levels.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

A JSON array where each item represents a decision extracted from the transcript, including: the decision text, the assigned owner (person or team responsible), the deadline (if mentioned), a source excerpt from the original transcript supporting the extraction, and a confidence score (0–1) indicating how certain the extraction is.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     },
     "required": [
      "prompt"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/meeting-decisions-extractor-78f7c908/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)
