ToolAssay

One-call drug situational awareness

One-call drug situational awareness. Give a drug name (resolved to a canonical RxCUI via NIH RxNorm), or an exact rxcui or ndc you already hold, and get back: whether it is currently in FDA shortage, any open or recent FDA recalls, and FDA NDC-directory metadata (labeler, DEA schedule, pharmaceutical class, marketing status). Returns a resolved identity block plus hasCurrentShortage / hasOpenRecall booleans and one found/error block per source (shortages, ndc, recalls). Composition of NIH RxNorm + OpenFDA drug-shortages, NDC directory, and recall enforcement — all free, public-domain US government data; each source degrades independently. Point-in-time public records, not medical advice. Use for pharmacy/supply-chain triage, prescribing-support agents, and verifying a drug is real, scheduled, and available before acting.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
237 msmedian answer time
$0.015listed price per call
$0.015price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://2s.io/api/medical/drug-status

CategoryEverything else
Provider host2s.io
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.015 237 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "drug": "amoxicillin",
    "limit": 5
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "properties": {
        "method": {
          "const": "GET"
        },
        "queryParams": {
          "properties": {
            "drug": {
              "description": "Free-text drug name, resolved via RxNorm (e.g. \"amoxicillin\").",
              "type": "string"
            },
            "limit": {
              "default": 10,
              "description": "Max records per source.",
              "maximum": 50,
              "minimum": 1,
              "type": "integer"
            },
            "ndc": {
              "description": "Exact NDC (product or package), if already known.",
              "type": "string"
            },
            "rxcui": {
              "description": "Exact RxNorm RxCUI, if already known.",
              "type": "string"
            }
          }
        },
        "type": {
          "const": "http"
        }
      },
      "required": [
        "type",
        "method",
        "queryParams"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON