# GovParse Clinical Trials Search

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

Search ClinicalTrials.gov industry-sponsored interventional studies by sponsor, phase, status, condition, intervention type, US state, and date filters — returning structured trial data for commercial targeting

## Facts

- Endpoint: GET https://api.govparse.io/v1/trials/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/govparse-clinical-trials-search-1687aca1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jr8jXsby_cX8p6UOlCAST

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-search-1687aca1
```

Example prompt: Find all recruiting Phase 3 drug trials sponsored by Regeneron that were first posted since January 2025, and show me up to 50 results sorted by start date descending.

## When to prefer this

Use this endpoint when you need structured, filterable access to industry-sponsored clinical trial data from ClinicalTrials.gov — especially for commercial use cases like CRO business development, trial software sales targeting, or competitive pipeline intelligence. Prefer this over raw ClinicalTrials.gov queries when you need sponsor entity resolution, clean filtering by phase/status/condition/state, and commercial-ready output. Not suited for academic trial design, patient recruitment, or non-industry-sponsored studies.

## Known failure modes

- No matching trials found for the given filters — returns empty result set
- Invalid phase or status enum value — returns 400 validation error
- Date string in wrong format — returns 400 parsing error
- Limit exceeds 100 cap — returns 400 or clamped result
- Entity UUID not found in resolved graph — no enrichment returned
- Rate limit or payment failure via x402 — returns 402 or 429

## How this service works

Which companies are running clinical trials, and at what stage? Search ClinicalTrials.gov interventional industry-sponsored studies by lead sponsor, phase, status, condition, intervention type, a US state with a site, first-posted date (since), start date, or completion date. Returns the sponsor (entity-resolved where possible), phase, status, conditions, enrollment, and dates — a developer target list for CRO, trial-software, and commercial-ops sellers. ClinicalTrials.gov public records.

## Output

Returns a paginated list of clinical trial records, each including the resolved sponsor name and optional entity UUID, trial phase, overall status, conditions studied, enrollment count, intervention types, first-posted date, start date, and completion 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": [
      "start_date:desc"
     ],
     "description": "first_posted_date | start_date | completion_date | last_update_date :asc|:desc. Default first_posted_date:desc."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "phase": {
     "type": "string",
     "examples": [
      "PHASE3"
     ],
     "description": "Trial phase(s), CSV (PHASE1 | PHASE2 | PHASE3 | PHASE4 | EARLY_PHASE1)."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "First posted to the registry on/after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "TX"
     ],
     "description": "Has a trial site in these US state code(s), CSV."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip."
    },
    "status": {
     "type": "string",
     "examples": [
      "RECRUITING"
     ],
     "description": "Overall status, CSV (RECRUITING | COMPLETED | TERMINATED | ...)."
    },
    "sponsor": {
     "type": "string",
     "examples": [
      "Regeneron"
     ],
     "description": "Lead sponsor company — suffix/punctuation-insensitive."
    },
    "condition": {
     "type": "string",
     "examples": [
      "psoriasis"
     ],
     "description": "Indication / condition fragment."
    },
    "entity_id": {
     "type": "string",
     "examples": [
      "b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
     ],
     "description": "Resolved sponsor employer entity UUID (pivots to business360)."
    },
    "started_after": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "Study start on/after this date (YYYY-MM-DD)."
    },
    "completed_after": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "Study completion on/after this date (YYYY-MM-DD)."
    },
    "intervention_type": {
     "type": "string",
     "examples": [
      "DRUG"
     ],
     "description": "Intervention type, CSV (DRUG | DEVICE | BIOLOGICAL | ...)."
    }
   }
  }
 }
}
```

## More

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