# WhatChuNeed Drug Information Lookup

> WhatChuNeed Drug Information Lookup is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Returns drug description, generic name, and safety warnings for a given drug name

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/med/drug
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-drug-information-lookup-442b23c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MzKqqKbDMooPdQzX0UXxw

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 whatchuneed-drug-information-lookup-442b23c0 -d '<json body>'
```

Example prompt: Can you look up drug information for metformin, including its description, generic name, and any safety warnings?

## When to prefer this

Use this endpoint when you need quick structured drug information — description, generic name, and warnings — without building a full healthcare database integration. Ideal for AI agents that need to answer patient or user questions about medications in a pay-per-call, no-subscription model via x402 protocol.

## Known failure modes

- Drug name not found in database — may return empty or null fields
- Misspelled drug name may yield no results or incorrect match
- Brand names vs generic names may not always resolve to the same record
- Missing required 'name' field returns a validation error

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a JSON object containing the drug's canonical name, its generic name, a textual description of the drug, and an array of warning strings associated with that medication.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "name"
 ],
 "properties": {
  "name": {
   "type": "string",
   "description": "Drug name"
  },
  "format": {
   "enum": [
    "full",
    "summary"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string"
  },
  "warnings": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "description": {
   "type": "string"
  },
  "generic_name": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-drug-information-lookup-442b23c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
