# MedAPI Patient Info — Drug Information Lookup

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

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

## Facts

- Endpoint: POST https://mamujamedapi.vercel.app/api/patient-info
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/medapi-patient-info-drug-information-lookup-f20ae6a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1ate8D1IQiLpFNFKxZSVw

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

Example prompt: Can you look up patient information for metformin — I need its uses, dosage, side effects, precautions, and a plain-language explanation I can actually understand?

## When to prefer this

Choose this endpoint when you need a quick, patient-friendly overview of a specific drug including uses, dosage, side effects, and precautions, especially when you want an AI-generated plain-language explanation alongside structured data. Prefer it over raw FDA databases when you need both structured drug facts and a human-readable summary in a single call.

## Known failure modes

- Drug name not found in database — returns success: false with no data
- Ambiguous drug name causing incorrect lookup — wrong drug information returned
- LLM analysis unavailable or timeout — data may return without the analysis object
- Invalid or missing 'name' field in request body — validation error
- Rate limiting or payment failure via x402 — request blocked

## How this service works

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

## Output

Returns a success flag plus a structured data object containing the drug name, its uses, dosage instructions, an array of precautions, and an array of side effects. Also includes an AI-generated 'analysis' object with a patient-friendly LLM explanation of the drug information.

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