# GovParse Clinical Trials Feed

> GovParse Clinical Trials 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-14).

Returns a cursor-paginated bulk feed of new NIH ClinicalTrials.gov interventional, industry-sponsored studies, sorted newest-first by registry-posting date, with filters for sponsor, phase, status, condition, intervention type, and US state.

## Facts

- Endpoint: GET https://api.govparse.io/v1/feeds/clinical-trials
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-clinical-trials-feed-13dd34bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bi2YXkk6PSshl6i2tbDwQ

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-clinical-trials-feed-13dd34bc
```

Example prompt: Pull the latest industry-sponsored clinical trials posted to ClinicalTrials.gov since 2026-06-01, filtering for RECRUITING Phase 2 or Phase 3 DRUG trials in oncology — give me up to 500 rows with sponsor, phase, status, site count, and US states sited.

## When to prefer this

Choose this endpoint when you need a bulk, up-to-date feed of new industry-sponsored clinical trial openings for commercial intelligence, R&D monitoring, or competitive tracking — especially when you need to filter by multiple dimensions (sponsor, phase, status, condition, geography) and paginate through large result sets. Prefer it over manual ClinicalTrials.gov searches when you need structured, machine-readable data at scale. Not suitable for observational studies, academic/NIH-sponsored trials, or predictive trial outcome data.

## Known failure modes

- Invalid phase value returns 400 with validation error
- Invalid status value returns 400 with validation error
- Malformed cursor token returns 400 or empty result
- Limit exceeding 1000 is capped or rejected
- No matching trials for given filters returns empty results array
- Date format other than YYYY-MM-DD returns 400
- Payment not provided or insufficient returns 402

## How this service works

Which companies just opened a new clinical trial or site? Bulk feed over NIH ClinicalTrials.gov interventional, industry-sponsored studies, newest-first by registry-posting date (the R&D / commercial-growth signal). Cursor-paginated up to 1000/page, filterable by sponsor, phase, status, condition, intervention type, site state, or since. Rows carry sponsor, phase, status, conditions, enrollment, dates, site count, and the US states sited. Observational registry records, never a prediction.

## Output

A cursor-paginated list of up to 1000 interventional, industry-sponsored clinical trial records per page, each containing: NCT registry ID, lead sponsor name, trial phase, overall status, conditions/indications, intervention type, enrollment count, first-posted date, site count, and US states where sites are located. Also returns a next_cursor token for fetching subsequent pages.

## 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)."
    },
    "phase": {
     "type": "string",
     "examples": [
      "PHASE2,PHASE3"
     ],
     "description": "Trial phase(s), CSV: PHASE1 | PHASE2 | PHASE3 | PHASE4 | EARLY_PHASE1 | NA."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-06-01"
     ],
     "description": "Only trials first posted to the registry on or after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "MA,CA"
     ],
     "description": "Has a trial site in these US state code(s), CSV."
    },
    "cursor": {
     "type": "string",
     "examples": [
      "eyJkIjoiMjAyNi0wNy0yNCIsImsiOiJOQ1QwNzcyNDc1NiJ9"
     ],
     "description": "Opaque page cursor — pass the previous page's next_cursor unchanged."
    },
    "status": {
     "type": "string",
     "examples": [
      "RECRUITING"
     ],
     "description": "Overall status, CSV: RECRUITING | NOT_YET_RECRUITING | COMPLETED | TERMINATED..."
    },
    "sponsor": {
     "type": "string",
     "examples": [
      "Qilu"
     ],
     "description": "Lead sponsor company name fragment."
    },
    "condition": {
     "type": "string",
     "examples": [
      "oncology"
     ],
     "description": "Indication / condition fragment (matched against the trial's conditions)."
    },
    "intervention_type": {
     "type": "string",
     "examples": [
      "DRUG"
     ],
     "description": "Intervention type(s), CSV: DRUG | DEVICE | BIOLOGICAL | PROCEDURE..."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-clinical-trials-feed-13dd34bc/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)
