# ClinicalTrials.gov NCT Study Resolver

> ClinicalTrials.gov NCT Study Resolver is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Resolves a single clinical trial by NCT ID and returns a normalized, cited profile including identity, phase, status, design, endpoints, sites, and key dates from ClinicalTrials.gov.

## Facts

- Endpoint: GET https://api.agentstools.dev/trials/study
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clinicaltrials-gov-nct-study-resolver-bc08fbc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3b3WKSn3b4Y-ZC_YSqGlO

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-nct-study-resolver-bc08fbc0
```

Example prompt: Pull up the full trial profile for NCT03228186 — I need the phase, recruitment status, primary outcomes, lead sponsor, trial sites, and any key dates.

## When to prefer this

Use this endpoint when you need a single, normalized, citation-ready profile for a specific clinical trial identified by its NCT ID. Prefer this over raw ClinicalTrials.gov API calls when you need computed signals, clean structured output, and cited data ready for downstream agent use — especially for biotech research, regulatory analysis, or patient-facing trial matching workflows.

## Known failure modes

- Invalid or malformed NCT ID returns an error
- NCT ID not found in ClinicalTrials.gov returns 404 or empty result
- ClinicalTrials.gov upstream unavailability may cause timeouts
- Missing required query parameter (nct or id) returns validation error

## How this service works

Resolve one clinical trial by its NCT id and get a normalized cited profile: identity, recruitment status, phase, study design, target enrollment, lead sponsor and collaborators, conditions, interventions, primary outcomes, trial sites and key dates, plus computed signals from ClinicalTrials.gov.

## Output

A normalized, cited JSON profile of the clinical trial including: trial identity and NCT ID, current recruitment status, phase, study design, target enrollment number, lead sponsor and collaborators, conditions studied, interventions, primary outcome measures, trial sites, key dates (start, primary completion, estimated completion), and computed signals derived from ClinicalTrials.gov data.

## 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",
     "required": [],
     "properties": {
      "id": {
       "type": "string",
       "description": "Alias for nct"
      },
      "nct": {
       "type": "string",
       "description": "A ClinicalTrials.gov NCT id such as NCT03228186"
      }
     }
    }
   },
   "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-nct-study-resolver-bc08fbc0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
