# MedAPI PubMed Article Lookup

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

Retrieves full PubMed article metadata including title, authors, journal, abstract, and publication date by PMID

## Facts

- Endpoint: POST https://mamujamedapi.vercel.app/api/article
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/medapi-pubmed-article-lookup-dae16006
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kNXTzXoduuZSa9bY1dyD5

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-lookup-dae16006 -d '<json body>'
```

Example prompt: Can you pull the full details for PubMed article PMID 34567890 — I need the title, authors, journal, and abstract?

## When to prefer this

Use this endpoint when you have a specific PubMed ID (PMID) and need structured article metadata — title, abstract, authors, journal, and date — rather than searching for articles by keyword. It is ideal for citation verification, literature review enrichment, or resolving a PMID reference into human-readable details.

## Known failure modes

- Invalid or non-existent PMID returns success: false with no data
- Network timeout if PubMed/NCBI upstream is slow
- Missing pmid field in request body causes validation error
- PMID for a retracted article may still return metadata without retraction notice
- Payment failure (insufficient USDC) returns 402 before the request is processed

## 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 success status and, on success, a data object containing the article's PMID, title, list of authors, journal name, full abstract text, and publication date.

## 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": {
    "pmid": {
     "type": "string"
    },
    "title": {
     "type": "string"
    },
    "authors": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "journal": {
     "type": "string"
    },
    "abstract": {
     "type": "string"
    },
    "pub_date": {
     "type": "string"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/medapi-pubmed-article-lookup-dae16006/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)
