# WhatChuNeed Drug Search

> WhatChuNeed Drug Search 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-14).

Search a drug database by name or query to retrieve drug details including generic name, route of administration, and manufacturer

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/med/drug-search
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-drug-search-4d76f2f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nOtpxranJ1kXzRUAlrAHh

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-search-4d76f2f6 -d '<json body>'
```

Example prompt: Can you search for information on metformin — I want to know its generic name, how it's administered, and who manufactures it?

## When to prefer this

Choose this endpoint when you need quick pharmaceutical lookup by drug name, want to resolve brand-to-generic name mappings, or need to identify the manufacturer and route of administration for a medication. Prefer this over general web search when structured, machine-readable drug data is needed for downstream processing.

## Known failure modes

- Empty results array if no drugs match the query string
- Ambiguous query returning many loosely related results
- Query too short or vague returning irrelevant entries
- Network or server error returning HTTP 500
- Missing or malformed query field returning 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

An array of matching drug records, each containing the drug's brand name, generic name, route of administration (e.g., oral, injectable), and manufacturer name.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "results": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "name": {
      "type": "string"
     },
     "route": {
      "type": "string"
     },
     "generic_name": {
      "type": "string"
     },
     "manufacturer": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-drug-search-4d76f2f6/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)
