# WhatChuNeed NDC Drug Lookup

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

Looks up drug information by NDC (National Drug Code), returning details about the medication associated with a given NDC identifier

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/med/ndc
- 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-ndc-drug-lookup-3b55b868
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zycrAnpBvd0VkYWXj-ahl

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-ndc-drug-lookup-3b55b868 -d '<json body>'
```

Example prompt: Can you look up the drug information for NDC code 0069-0420-30 and tell me the medication name, manufacturer, and dosage form?

## When to prefer this

Use this endpoint when you need to identify a medication from its NDC (National Drug Code), such as when processing pharmacy data, verifying drug information from barcodes, or enriching medical records. Prefer this over general medical search endpoints when you have a specific NDC code and need structured drug metadata. Best suited for single-NDC lookups rather than bulk queries.

## Known failure modes

- Invalid or malformed NDC code returns an error or empty result
- NDC not found in database returns no matching drug record
- Missing required 'input' field returns a validation error
- Network or upstream database timeout may result in a failed status
- Discontinued or very old NDC codes may not be found in current datasets

## 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 result object containing drug details associated with the provided NDC code, including the medication name, labeler/manufacturer, dosage form, route of administration, active ingredients, and packaging description, along with a status field indicating success or failure.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-ndc-drug-lookup-3b55b868/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)
