# LongevityPulse Clinical Trials Search

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

Searches ClinicalTrials.gov for active anti-aging and longevity clinical trials by condition, intervention, or location with eligibility details and application info

## Facts

- Endpoint: GET https://longevitypulse.vercel.app/api/longevity/clinical-trials
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/longevitypulse-clinical-trials-search-9083f349
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RPNXH8cmBX0V-STcFtWKo

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 longevitypulse-clinical-trials-search-9083f349
```

Example prompt: Find me active clinical trials testing rapamycin or metformin for longevity near San Francisco — I'm 52 years old and want to know if I'm eligible and how to apply.

## When to prefer this

Choose this endpoint when a user wants to find real, currently active longevity or anti-aging clinical trials — especially for specific interventions like rapamycin, metformin, NMN, or senolytics — including eligibility and enrollment details. Prefer over generic ClinicalTrials.gov search when the use case is specifically longevity/geroscience focused and the agent needs pre-filtered, relevant results with structured eligibility and application guidance.

## Known failure modes

- No matching trials found for the specified condition or intervention — returns empty results
- Invalid or unrecognized intervention name yields no results
- Location too narrow or misspelled returns empty set
- ClinicalTrials.gov upstream unavailability causes timeout or error
- Payment of 0.1 USDC not confirmed — 402 Payment Required response

## How this service works

Longevity clinical trial search / anti-aging trial finder for research and health agents. Finds active trials from ClinicalTrials.gov by condition, intervention (rapamycin, metformin, NMN, senolytics, caloric restriction), or location worldwide, with eligibility and how to apply. Health intelligence, not medical advice.

## Output

A list of active anti-aging and longevity clinical trials from ClinicalTrials.gov matching the query, including trial name, status, intervention being tested, eligibility requirements (age range, health conditions, exclusion criteria), location, and instructions for how to apply or enroll.

## 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": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar | hi (default: en)"
      },
      "condition": {
       "type": "string",
       "description": "Condition or intervention to search — e.g. \"aging\" | \"rapamycin\" | \"metformin\" | \"NMN\" | \"senolytics\" | \"caloric restriction\" | \"longevity\" | \"Alzheimer prevention\""
      },
      "max_trials": {
       "type": "string",
       "description": "Trials to return, 1-20 (default 10). Pay-per-trial via the upto scheme: $0.04 + $0.003/trial (10 trials = $0.07); exact-scheme payments are flat $0.10."
      },
      "recruiting_only": {
       "type": "string",
       "description": "\"true\" to show only actively recruiting trials (default: true)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "trials": [
   {
    "phase": "Phase 2",
    "title": "PEARL Trial: Rapamycin for Healthy Aging",
    "nct_id": "NCT05483452",
    "status": "RECRUITING",
    "intervention": "Rapamycin 5mg weekly",
    "why_it_matters": "First major human RCT of rapamycin for longevity in healthy adults — results could transform longevity medicine"
   }
  ],
  "search_summary": {
   "total_found": 8,
   "global_scope": "US, UK, Australia, Canada, Israel",
   "recruiting_now": 5,
   "condition_searched": "rapamycin"
  }
 }
}
```

## More

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