# Biomedical & Pharma Data API

> Biomedical & Pharma Data API is a paid API for AI agents from web-production-60258.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves biomedical and pharmaceutical data including clinical trials, drug approvals, adverse events, pipeline status, patent expiry, and market size by drug, company, or condition.

## Facts

- Endpoint: GET https://web-production-60258.up.railway.app/biomedical
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/web-production-60258-up-railway-app-49b22eb9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EycnFTpLOlC3Fb2v7-6Xw

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 web-production-60258-up-railway-app-49b22eb9
```

Example prompt: Pull the clinical trials data for semaglutide — I want to see what studies are currently running or completed for that drug.

## When to prefer this

Use this endpoint when you need structured pharmaceutical or biomedical data — clinical trials, FDA approvals, adverse events, drug pipeline, patent expiry, or market sizing — for a specific drug, company, or condition. It is a single-call API covering six distinct pharma data domains, making it efficient for agents that need quick lookups without building complex multi-source integrations. Note: the description flags this as partially stub data with a live pipeline coming, so verify response completeness for production use.

## Known failure modes

- Invalid or unsupported ?type= value returns an error or empty response
- No results found for an obscure drug or condition
- Stub data returned if live pipeline is not yet active for the requested data type
- Missing required query parameter results in malformed request
- Payment failure (402) if USDC balance is insufficient

## How this service works

[INTENT CAPTURE — stub data, live pipeline coming] Biomedical and pharma data on demand — clinical trials, drug approvals, adverse events, pipeline, patent expiry, and market size. Pass ?type= to specify: clinical_trials, drug_approvals, adverse_events, pipeline, patent_expiry, market_size.

## Output

Returns biomedical or pharmaceutical data matching the requested type and query, such as clinical trial records, drug approval histories, adverse event summaries, pipeline status, patent expiry timelines, or market size figures for a given drug, company, or condition.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "type": {
       "enum": [
        "clinical_trials",
        "drug_approvals",
        "adverse_events",
        "pipeline",
        "patent_expiry",
        "market_size"
       ],
       "type": "string",
       "description": "Data type to retrieve"
      },
      "query": {
       "type": "string",
       "description": "Drug name, company, condition, or therapeutic area"
      }
     }
    }
   },
   "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/web-production-60258-up-railway-app-49b22eb9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from web-production-60258.up.railway.app](https://www.zero.xyz/host/web-production-60258.up.railway.app/llms.txt)
