# FDA Drug Approval Search (govparse.io)

> FDA Drug Approval Search (govparse.io) is a paid API for AI agents from api.govparse.io, paid per call via x402, $1.25/call, status unknown (last checked 2026-09-14).

Searches openFDA drug application records to find companies that recently won FDA drug approvals, filtered by sponsor, application type, route, or approval date.

## Facts

- Endpoint: GET https://api.govparse.io/v1/fda/drug-approvals/search
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fda-drug-approval-search-govparse-io-520ccb78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Rv_GmhAJYwLFbf-XKMpNC

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 fda-drug-approval-search-govparse-io-520ccb78
```

Example prompt: Show me all NDA and BLA drug approvals since 2025-01-01 for any Sandoz products, sorted by most recent approval date — I want to build a day-one outreach list for our CRO sales team.

## When to prefer this

Use this endpoint when you need structured, filterable FDA drug approval data linked to applicant companies — especially for commercial intelligence, CRO sales prospecting, partnership targeting, or market entry monitoring. Prefer this over raw openFDA queries when you need entity-resolved company names, pre-filtered by application type or date, without building your own openFDA query logic. Choose sibling endpoints on govparse.io for medical device approvals (510k), drug/device recalls, or patent searches.

## Known failure modes

- Company name not found or misspelled — returns empty result set
- Invalid application_type value returns validation error
- Date format not YYYY-MM-DD causes parse error
- Limit exceeding 100 returns error or is capped
- No results when date range is too narrow or combination of filters is too restrictive
- Entity UUID not found in resolved employer database returns empty match

## How this service works

Which companies just won an FDA drug approval or supplement? Search openFDA drug/drugsfda applications by sponsor company, application type (NDA/ANDA/BLA), route, marketing status, most-recent approval date (since), or original market-entry date (first_approval_after). Returns the applicant company (entity-resolved where possible), brand/ingredient/dosage, and approval dates — a day-one commercial/partnership target list for pharma sellers and CROs. openFDA public-domain records.

## Output

Returns a list of FDA drug application records including applicant/sponsor company name (entity-resolved where possible), brand name, active ingredient, dosage form, route of administration, application type (NDA/ANDA/BLA), marketing status, original approval date, and most recent supplement approval date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "sort": {
     "type": "string",
     "examples": [
      "latest_approval_date:desc"
     ],
     "description": "latest_approval_date | original_approval_date :asc|:desc. Default latest_approval_date:desc."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "route": {
     "type": "string",
     "examples": [
      "ORAL"
     ],
     "description": "Route-of-administration fragment."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "Most recent approval/supplement on/after this date (YYYY-MM-DD)."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip."
    },
    "company": {
     "type": "string",
     "examples": [
      "Sandoz"
     ],
     "description": "Applicant/sponsor company — suffix/punctuation-insensitive."
    },
    "entity_id": {
     "type": "string",
     "examples": [
      "b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
     ],
     "description": "Resolved employer entity UUID (pivots to business360)."
    },
    "application_type": {
     "type": "string",
     "examples": [
      "NDA"
     ],
     "description": "NDA | ANDA | BLA (CSV)."
    },
    "marketing_status": {
     "type": "string",
     "examples": [
      "Prescription"
     ],
     "description": "Prescription | Over-the-counter | Discontinued."
    },
    "first_approval_after": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "Original approval (market entry) on/after this date (YYYY-MM-DD) — surfaces new market entrants."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fda-drug-approval-search-govparse-io-520ccb78/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
