# MedAPI PubMed Article Summarizer

> MedAPI PubMed Article Summarizer is a paid API for AI agents from mamujamedapi.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-13).

Fetches a PubMed article by PMID and returns an AI-generated summary with key findings

## Facts

- Endpoint: POST https://mamujamedapi.vercel.app/api/summarize
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/medapi-pubmed-article-summarizer-1b63b3f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3E2DH3iXrw4g90PdPrYUJ

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-1b63b3f1 -d '<json body>'
```

Example prompt: Can you summarize PubMed article 34521891 for me and pull out the key findings?

## When to prefer this

Choose this endpoint when you need a rapid AI-generated summary and structured key findings for a specific PubMed article identified by its PMID, especially in research, clinical, or patient-education workflows where reading the full paper is impractical. Prefer this over generic web-scraping or LLM summarization when you want medical-domain-optimized extraction tied directly to PubMed's database.

## Known failure modes

- Invalid or non-existent PMID returns an error or success:false
- PubMed API unavailability may cause fetch failure
- Paywalled or restricted articles may not be fully accessible
- Payment failure on x402 Base network prevents call from completing
- Timeout if PubMed is slow to respond

## 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 flag, a prose summary of the PubMed article, and an array of key findings strings extracted from the paper by AI analysis.

## 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-1b63b3f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mamujamedapi.vercel.app](https://www.zero.xyz/host/mamujamedapi.vercel.app/llms.txt)
