# MedAPI PubMed Article Summarizer

> MedAPI PubMed Article Summarizer is a paid API for AI agents from madapi.tempochan.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Fetches and AI-summarizes a PubMed article by PMID, returning a plain-language summary and key findings

## Facts

- Endpoint: POST https://madapi.tempochan.xyz/api/summarize
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/medapi-pubmed-article-summarizer-57e794f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Su4xAJeGLOUDrkNOGt0lX

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 medapi-pubmed-article-summarizer-57e794f2 -d '<json body>'
```

Example prompt: Can you pull up PubMed article PMID 37845291 and give me an AI-generated summary with the key findings in plain language?

## When to prefer this

Choose this endpoint when an agent needs a fast, AI-generated plain-language summary of a specific PubMed article identified by PMID — especially useful for researchers, clinicians, or non-specialists who want key findings without reading full papers. Prefer over raw PubMed API when summarization and synthesis are needed, not just retrieval.

## Known failure modes

- Invalid or non-existent PMID returns success:false with no data
- PubMed API unavailability causes retrieval failure
- Article not publicly indexed or behind paywall may yield incomplete summary
- Malformed request missing required 'pmid' field returns error
- Payment failure via x402/USDC blocks request processing

## How this service works

Drug data, adverse events, clinical trials, PubMed. AI-powered medical analysis. 17 endpoints. x402 on Base.

## Output

Returns a JSON object with a 'success' boolean, a plain-language 'summary' string of the PubMed article, and a 'key_findings' array of bullet-point takeaways extracted from the paper.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "pmid"
 ],
 "properties": {
  "pmid": {
   "type": "string",
   "description": "pmid"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "summary": {
     "type": "string"
    },
    "key_findings": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/medapi-pubmed-article-summarizer-57e794f2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from madapi.tempochan.xyz](https://www.zero.xyz/host/madapi.tempochan.xyz/llms.txt)
