# ClinicalIntelPulse Trial Check

> ClinicalIntelPulse Trial Check is a paid API for AI agents from clinicalintelpulse.theaslangroupllc.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Looks up clinical trial status and details by NCT ID or searches trials by condition/sponsor with phase and status filters via the official ClinicalTrials.gov v2 API

## Facts

- Endpoint: GET https://clinicalintelpulse.theaslangroupllc.com/api/clinical/trial-check
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clinicalintelpulse-trial-check-40382844
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0Hb3QemGIgYQGUfGRLeNQ

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 clinicalintelpulse-trial-check-40382844
```

Example prompt: What's the current status of clinical trial NCT02142738 — is it still recruiting, what phase is it in, who's sponsoring it, and which countries is it running in?

## When to prefer this

Use this endpoint when you need fast, deterministic, structured clinical trial data straight from ClinicalTrials.gov — no LLM interpretation, no API key required, no hallucination risk. Prefer this over general web search when you need authoritative trial status, phase, sponsor, enrollment, or geographic data for a specific NCT ID or a filtered condition/sponsor search.

## Known failure modes

- NCT ID not found — trial does not exist in ClinicalTrials.gov database
- Invalid NCT ID format — malformed identifier
- No trials match the search filters — empty result set returned
- ClinicalTrials.gov v2 API upstream outage — service unavailable
- Rate limiting or payment failure via x402 protocol

## How this service works

ClinicalTrials.gov lookup, deterministic. Answers "what is the status of NCT02142738", "recruiting phase-3 melanoma trials", "Pfizer trial pipeline". Single trial by NCT id (status, phase, sponsor, enrollment, dates, countries) or search by condition/sponsor with phase and status filters. Typed records straight off the official v2 API — no LLM, no key, public domain.

## Output

Returns typed records directly from ClinicalTrials.gov v2 API: for a single NCT ID lookup — status, phase, sponsor, enrollment count, start/end dates, and participating countries; for a search query — a list of matching trials filtered by condition, sponsor, phase, and/or status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "nct": {
   "type": "string",
   "description": "Single trial by NCT id"
  },
  "limit": {
   "type": "string",
   "description": "Max results 1-25, default 10 (search only)"
  },
  "phase": {
   "type": "string",
   "description": "1 | 2 | 3 | 4 (search only)"
  },
  "status": {
   "type": "string",
   "description": "RECRUITING | ACTIVE_NOT_RECRUITING | COMPLETED | TERMINATED …"
  },
  "sponsor": {
   "type": "string",
   "description": "Search by sponsor name"
  },
  "condition": {
   "type": "string",
   "description": "Search by condition"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "single",
  "trial": {
   "nctId": "NCT02142738",
   "phase": [
    "PHASE3"
   ],
   "status": "COMPLETED",
   "sponsor": "Merck Sharp & Dohme LLC",
   "enrollment": 834
  },
  "deterministic": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clinicalintelpulse-trial-check-40382844/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clinicalintelpulse.theaslangroupllc.com](https://www.zero.xyz/host/clinicalintelpulse.theaslangroupllc.com/llms.txt)
