# fittings DailyMed SPL Fetch

> fittings DailyMed SPL Fetch is a paid API for AI agents from fittings.sh, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-15).

Fetches the current label version, product details, active ingredients, marketed NDC codes, and full revision history for a DailyMed drug label by its SET ID.

## Facts

- Endpoint: GET https://fittings.sh/v1/dailymed/spl-fetch
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-dailymed-spl-fetch-843085a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rPRe1B936RK14dS1PD97v

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-dailymed-spl-fetch-843085a5
```

Example prompt: Can you look up the DailyMed drug label for SET ID a9e3b2c1-1234-5678-abcd-ef0123456789 and tell me the current label version, active ingredients, NDC codes, and revision history?

## When to prefer this

Use this endpoint when you need structured, machine-readable drug label metadata from DailyMed — specifically the current label version, active ingredients, NDC codes, and revision history — for a known SET ID UUID. Prefer this over scraping DailyMed directly or using the full DailyMed API when you want a simple, cost-effective single-call lookup with normalized output.

## Known failure modes

- Invalid or malformed SET ID UUID returns an error or empty result
- SET ID not found in DailyMed returns a 404 or empty response
- Retired or superseded SET IDs may return incomplete or no revision history
- Network timeout if DailyMed upstream is slow or unavailable

## How this service works

For one DailyMed SET ID: the current label version and date, its products with active ingredients and package descriptions, its marketed NDC codes, and the full revision history.

## Output

Returns the current SPL label version and date, a list of products with their active ingredients and package descriptions, all marketed NDC codes associated with the label, and the complete revision history showing prior versions and their dates.

## 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": [
      "setid"
     ],
     "properties": {
      "setid": {
       "type": "string",
       "description": "DailyMed SET ID UUID"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-dailymed-spl-fetch-843085a5/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)
