# GovParse FDA Drug Approvals Feed

> GovParse FDA Drug Approvals Feed is a paid API for AI agents from api.govparse.io, paid per call via x402, $25/call, status unknown (last checked 2026-09-15).

Returns a cursor-paginated bulk feed of FDA drug approvals from openFDA, newest-first, with sponsor, application, ingredient, and marketing status details.

## Facts

- Endpoint: GET https://api.govparse.io/v1/feeds/fda-drug-approvals
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-fda-drug-approvals-feed-0bcad12b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nYECvaUZIcyAs8qcqY-vN

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 govparse-fda-drug-approvals-feed-0bcad12b
```

Example prompt: Pull the latest FDA drug approvals from govparse — show me everything approved since 2025-01-01 for sponsor Hikma, original approvals only, up to 500 rows.

## When to prefer this

Choose this endpoint when you need bulk, paginated access to FDA drug approval records with filtering by sponsor, submission type, marketing status, or date — especially for monitoring new commercial drug launches or building intelligence pipelines over FDA approval data. Prefer it over manual openFDA queries when you need structured, normalized rows with cursor pagination and commercial-ready formatting.

## Known failure modes

- Invalid since date format returns a 400 validation error
- Unknown or misspelled sponsor fragment returns empty results with no error
- Invalid cursor token causes a 400 or 422 error
- Limit exceeding 1000 is capped or rejected with a 400 error
- openFDA upstream outage may cause 502/503 responses
- No results for very narrow date+sponsor+type filter combinations

## How this service works

Which drugs did the FDA just approve, and who is the sponsor? Bulk feed over openFDA Drugs@FDA approvals, newest-first by approval date — a new approval or supplement is a commercial-launch moment. Cursor-paginated up to 1000/page, filterable by sponsor, submission type (ORIG/SUPPL), marketing status, or since. Rows carry the sponsor, application number/type, brand names, active ingredients, dosage/route, and marketing status. Observational public records, never a clinical recommendation.

## Output

A paginated list of FDA drug approval records, each containing sponsor name, application number and type, brand name(s), active ingredients, dosage form, route of administration, marketing status, and approval date. Also includes a next_cursor token for fetching the next page and total count metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "limit": {
     "type": "integer",
     "examples": [
      500
     ],
     "description": "Rows per page (default 500, cap 1000)."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-06-01"
     ],
     "description": "Only approvals dated on or after this date (YYYY-MM-DD)."
    },
    "cursor": {
     "type": "string",
     "examples": [
      "eyJkIjoiMjAyNi0wNy0yMiIsImsiOiJBTkRBMDc2NTU4In0"
     ],
     "description": "Opaque page cursor — pass the previous page's next_cursor unchanged."
    },
    "sponsor": {
     "type": "string",
     "examples": [
      "Hikma"
     ],
     "description": "Sponsor company name fragment."
    },
    "submission_type": {
     "type": "string",
     "examples": [
      "ORIG"
     ],
     "description": "ORIG (original approval) | SUPPL (supplement)."
    },
    "marketing_status": {
     "type": "string",
     "examples": [
      "Prescription"
     ],
     "description": "Marketing status fragment (Prescription, Over-the-counter, Discontinued...)."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-fda-drug-approvals-feed-0bcad12b/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)
