orange_book_exclusivity_expirations

Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp

When does FDA marketing exclusivity expire for a drug — the listed Orange Book exclusivity expiration dates for a brand or ingredient, with the earliest and latest across the whole schedule. Ask by drug alone to get everything on file; add from_date/to_date only when you want a window, and anything excluded is counted and dated back to you. Exclusivity codes have program-specific meanings; expiration alone does not guarantee generic approval or launch.

Parameters

NameTypeRequiredDescription
drugstringnoIngredient, trade name, or applicant, e.g. “Jardiance” or “empagliflozin”.
from_datestringnoOptional window start YYYY-MM-DD. Omit for the drug’s whole schedule.
to_datestringnoOptional window end YYYY-MM-DD. Omit for the drug’s whole schedule.
limitnumbernoResults (1-100, default 25).

Example call

Arguments

{
  "drug": "Jardiance"
}

curl

curl -X POST https://gateway.pipeworx.io/fda-drug-competition/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"orange_book_exclusivity_expirations","arguments":{"drug":"Jardiance"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('orange_book_exclusivity_expirations', {
  "drug": "Jardiance"
});

More examples

{
  "from_date": "2026-01-01",
  "to_date": "2028-12-31",
  "limit": 25
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "fda-drug-competition": {
      "url": "https://gateway.pipeworx.io/fda-drug-competition/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 10, 2026