# whatchuneed Clinical Trials Search

> whatchuneed Clinical Trials Search is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Search ClinicalTrials.gov for active or historical clinical trials by medical condition and enrollment status

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/med/clinical-trials
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-clinical-trials-search-65584a31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tPMk1v31XkJ3ke-AqbwFJ

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 whatchuneed-clinical-trials-search-65584a31 -d '<json body>'
```

Example prompt: Can you find all currently recruiting clinical trials for Type 2 diabetes?

## When to prefer this

Use this endpoint when you need structured, programmatic access to clinical trial data filtered by condition and status without scraping ClinicalTrials.gov directly. Best for agents that need to surface trial options for patients, researchers, or competitive intelligence use cases and require a pay-per-call model with no subscription overhead.

## Known failure modes

- Missing required 'condition' field returns a 400 validation error
- Obscure or misspelled condition names may return zero results
- Invalid 'status' enum values may be ignored or return an error
- Upstream ClinicalTrials.gov data may be stale or incomplete
- Payment failure via x402 protocol results in 402 response with no data

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a total count of matching trials and an array of trial objects, each containing the NCT ID, title, phase, enrollment status, sponsoring organization, and associated condition.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "condition"
 ],
 "properties": {
  "status": {
   "type": "string"
  },
  "condition": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "total": {
   "type": "integer"
  },
  "trials": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "phase": {
      "type": "string"
     },
     "title": {
      "type": "string"
     },
     "nct_id": {
      "type": "string"
     },
     "status": {
      "type": "string"
     },
     "sponsor": {
      "type": "string"
     },
     "condition": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-clinical-trials-search-65584a31/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
