# fittings FDA Structured Product Label Search

> fittings FDA Structured Product Label Search is a paid API for AI agents from fittings.sh, paid per call via x402, $0.00398/call, status unknown (last checked 2026-09-14).

Searches FDA DailyMed for current Structured Product Labels (SPLs) by drug name, NDC code, or labeler name, returning label SET IDs, titles, versions, and publication dates.

## Facts

- Endpoint: GET https://fittings.sh/v1/dailymed/spl-search
- Price: $0.00398/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-fda-structured-product-label-search-8a213f9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AxBgPzGOLX5EAkm7ElMJw

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 fittings-fda-structured-product-label-search-8a213f9d
```

Example prompt: Search DailyMed for the current FDA Structured Product Labels for metformin — I need the label SET IDs, versions, and publication dates for the first 10 results.

## When to prefer this

Use this endpoint when you need to programmatically discover and reference current FDA-approved drug labeling documents from DailyMed, particularly when you need SET IDs for downstream label content retrieval, compliance workflows, or pharmacovigilance tasks. Prefer over scraping DailyMed directly when you need structured, machine-readable results at scale.

## Known failure modes

- No results returned if drug name, NDC, or labeler doesn't match any DailyMed record
- Invalid NDC format may return empty results or an error
- Page number out of range (1-20) may cause error or empty response
- Ambiguous drug name may return too many or irrelevant results
- Rate limit or payment failure may block the request

## How this service works

Finds current FDA Structured Product Labels by drug name, NDC or labeler, returning each label SET ID, title, version and publication date.

## Output

Returns a paginated list of FDA Structured Product Label records matching the query, each containing the label SET ID, title, version number, and publication date. Results are drawn from the live DailyMed database.

## 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": [],
     "properties": {
      "ndc": {
       "type": "string",
       "description": "NDC product or package code, e.g. 70518-3084"
      },
      "page": {
       "type": "number",
       "description": "1-20, default 1"
      },
      "limit": {
       "type": "number",
       "description": "1-50, default 10"
      },
      "labeler": {
       "type": "string",
       "description": "Labeler or repackager name, e.g. Pfizer"
      },
      "drugName": {
       "type": "string",
       "description": "Brand or generic name, e.g. metformin"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-fda-structured-product-label-search-8a213f9d/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)
