# MedAPI Patient Info — Drug Information Lookup

> MedAPI Patient Info — Drug Information Lookup 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).

Returns structured drug information (uses, dosage, precautions, side effects) plus an AI-generated patient-friendly explanation for a given drug name

## Facts

- Endpoint: POST https://madapi.tempochan.xyz/api/patient-info
- 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-patient-info-drug-information-lookup-24e68fdd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cem-_fTg65FvAJYZsIyBt

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-patient-info-drug-information-lookup-24e68fdd -d '<json body>'
```

Example prompt: Can you look up patient-friendly information about metformin — I need its uses, dosage, precautions, and side effects explained in plain language?

## When to prefer this

Choose this endpoint when you need quick, structured drug information plus a patient-friendly AI explanation for a named medication. Ideal for consumer-facing health apps, patient education workflows, or when an agent needs to explain a prescription to a non-specialist. Prefer over raw PubMed search when you want pre-structured dosage/precaution data rather than raw literature.

## Known failure modes

- Unknown or misspelled drug name may return success:false or empty data
- Obscure or experimental drugs may not be found in the underlying dataset
- Very new medications may lack complete dosage or side effect information
- Ambiguous drug names (e.g. brand vs generic) may return incorrect or incomplete results
- Payment failure via x402 returns 402 before any medical data is provided

## 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, structured drug data (drug name, uses, dosage, precautions array, side effects array), and an AI-generated analysis object containing a patient-friendly explanation of the medication.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "drug": {
     "type": "string"
    },
    "uses": {
     "type": "string"
    },
    "dosage": {
     "type": "string"
    },
    "precautions": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "side_effects": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   }
  },
  "success": {
   "type": "boolean"
  },
  "analysis": {
   "type": "object",
   "description": "LLM patient-friendly explanation"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/medapi-patient-info-drug-information-lookup-24e68fdd/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)
