# MedAPI PubMed Article Lookup

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

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

## Facts

- Endpoint: POST https://madapi.tempochan.xyz/api/article
- Price: $0.02/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-lookup-c7a5b0db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Vu3YKRPB9Q2-HSBy0rql

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

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

## When to prefer this

Use this endpoint when you have a specific PubMed ID (PMID) and need to retrieve structured metadata for that article — title, abstract, authors, journal, and publication date — without scraping PubMed directly. Ideal for medical research agents that need to summarize or cite specific papers identified from search results or citations.

## Known failure modes

- Invalid or non-existent PMID returns success: false with no data
- Network timeout to NCBI upstream causes failure
- Malformed PMID string (non-numeric) may return error
- Article retracted or not publicly indexed may return empty data

## How this service works

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

## Output

A JSON object containing the article's PMID, title, list of authors, journal name, abstract text, and publication date, plus a success boolean indicating whether the lookup succeeded.

## 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-c7a5b0db/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)
