# FDA NDC Directory Package Lookup

> FDA NDC Directory Package Lookup is a paid API for AI agents from fittings.sh, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns the FDA NDC Directory record for a drug package or product by National Drug Code, including brand/generic name, labeler, dosage form, route, active ingredients, and marketing status.

## Facts

- Endpoint: GET https://fittings.sh/v1/ndc/package-lookup
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-ndc-directory-package-lookup-953f76e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2ZkhcJtkCuwK-rhTuGuYi

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 fda-ndc-directory-package-lookup-953f76e3
```

Example prompt: Can you look up the FDA NDC Directory record for NDC 0002-8215-01 and tell me the brand name, generic name, labeler, dosage form, route, and whether it's currently marketed?

## When to prefer this

Use this endpoint when you need authoritative FDA drug metadata keyed by a 10-digit or segmented National Drug Code, such as validating drug identity, enriching pharmacy or supply chain records, or checking current marketing status. Prefer this over general drug databases when you need FDA-official labeler, ingredient, and marketing category data tied to a specific NDC.

## Known failure modes

- NDC not found in FDA database — returns empty result or 404
- Malformed NDC format (missing dashes, wrong segment lengths) causes validation error
- Product-level NDC vs package-level NDC confusion may return different result scopes
- FDA NDC Directory may not reflect very recently approved or withdrawn products

## How this service works

The FDA NDC Directory record for a package or product National Drug Code: brand and generic name, labeler, dosage form, route, active ingredients, marketing category and status.

## Output

A structured FDA NDC Directory record containing: brand name, generic name, labeler name, dosage form, route(s) of administration, active ingredient(s) with strength, marketing category (e.g. NDA, ANDA), and marketing status (e.g. active, discontinued) for the given package or product NDC.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ndc"
     ],
     "properties": {
      "ndc": {
       "type": "string",
       "description": "Segmented NDC, package (0002-8215-01) or product (0002-8215)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fda-ndc-directory-package-lookup-953f76e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
