# ClinicalTrials.gov Global Clinical Trial Lookup

> ClinicalTrials.gov Global Clinical Trial Lookup is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Queries ClinicalTrials.gov to retrieve global clinical trial data including study details, status, eligibility, and results

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/health/clinical-trials
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clinicaltrials-gov-global-clinical-trial-lookup-c322cb2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eDMBlkyvuuhtA0PewMcxF

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 clinicaltrials-gov-global-clinical-trial-lookup-c322cb2a
```

Example prompt: Can you search ClinicalTrials.gov and find me active clinical trials for non-small cell lung cancer, particularly any Phase 3 studies that are currently recruiting?

## When to prefer this

Use this endpoint when you need structured, authoritative clinical trial data directly from ClinicalTrials.gov — ideal for healthcare agents, medical researchers, pharma analysts, or patient-facing assistants needing current trial status, eligibility, and study details. Prefer this over general web search when you need machine-readable, filterable trial records rather than narrative summaries.

## Known failure modes

- No trials found matching query parameters — returns empty result set
- ClinicalTrials.gov upstream API unavailable — may return 502 or timeout
- Overly broad query returns large unfiltered dataset that may be hard to parse
- Query with misspelled condition name returns no results
- Rate limiting if too many concurrent calls are made

## How this service works

临床试验查询：ClinicalTrials.gov全球临床试验数据

## Output

Returns structured clinical trial data sourced from ClinicalTrials.gov, including trial identifiers (NCT numbers), study title, phase, status (recruiting/completed/etc.), conditions studied, interventions, sponsor, eligibility criteria, and locations.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clinicaltrials-gov-global-clinical-trial-lookup-c322cb2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
