# Suverse DailyMed Drug Label Search

> Suverse DailyMed Drug Label Search is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Search FDA DailyMed Structured Product Labels (SPL) by drug name or NDC code, returning official NLM prescribing information metadata

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-dailymed-drug-labels
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-dailymed-drug-label-search-5c193df0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fc6PB9Q02K17ZSwdZHidZ

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 suverse-dailymed-drug-label-search-5c193df0 -d '<json body>'
```

Example prompt: Search DailyMed for the official FDA structured product label for metformin hydrochloride and tell me the SPL set ID, labeller, and when it was last published.

## When to prefer this

Use this endpoint when you need authoritative FDA/NLM drug label metadata (SPL set ID, labeller, publication date) by drug name or NDC code without needing an API key. Prefer this over general web search when regulatory accuracy and official NLM sourcing is required. Best for pharmaceutical compliance, drug database enrichment, or verifying label currency.

## Known failure modes

- Drug name not found in DailyMed — returns empty results or no matches
- Invalid or unrecognized NDC format — may return no results
- Ambiguous drug name matching multiple products — may return multiple or unexpected records
- DailyMed upstream API unavailability — service error response
- Payment failure via x402 protocol — call not processed

## How this service works

Search DailyMed official FDA Structured Product Labels by drug name or NDC. Returns SPL set id, title, published date and labeller. NLM authoritative prescribing information. Keyless.

## Output

Returns FDA DailyMed Structured Product Label (SPL) metadata including SPL set ID, drug label title, published date, and labeller name sourced from the NLM authoritative database. Does not return full label text, only key identifying and administrative fields.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-dailymed-drug-label-search-5c193df0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
