# AllInOneCents Clinical Trials Search

> AllInOneCents Clinical Trials Search is a paid API for AI agents from allin-onecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Searches and retrieves clinical trial data based on a natural language or structured query

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/clinical-trials
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-clinical-trials-search-6b89b7eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oK478k3a7coTWb3V5wB7H

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 allinonecents-clinical-trials-search-6b89b7eb -d '<json body>'
```

Example prompt: Can you search for active clinical trials studying immunotherapy for non-small cell lung cancer, particularly phase 2 or phase 3 studies?

## When to prefer this

Use this endpoint when you need low-cost ($0.01) programmatic access to clinical trial information and can express your search as a natural language query. Prefer this over direct ClinicalTrials.gov API calls when working within an agent pipeline that already uses the AllInOneCents platform for other data types.

## Known failure modes

- Empty or vague query returns no results
- Query referencing unknown conditions may return empty data
- Network timeout if the upstream clinical trials data source is slow
- Malformed query string may result in success:false response
- Rate limiting or payment failure returns 402 error

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

Returns a data object containing clinical trial records matching the query, including study details such as trial phase, status, conditions, interventions, and eligibility criteria, along with a success boolean flag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Input query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/allinonecents-clinical-trials-search-6b89b7eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allin-onecents.orbonomy.xyz](https://www.zero.xyz/host/allin-onecents.orbonomy.xyz/llms.txt)
