# AllInOneCents — Drug Comparison

> AllInOneCents — Drug Comparison 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-15).

Compares two or more drugs based on a natural language query, returning medical/pharmacological comparison data

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/compare-drugs
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-drug-comparison-5fd5e845
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IfeZtVV0QfduBrpPqTywt

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-drug-comparison-5fd5e845 -d '<json body>'
```

Example prompt: Can you compare ibuprofen and acetaminophen for me — what are the key differences in how they work, their side effects, and when to use each one?

## When to prefer this

Use this endpoint when you need a quick, cheap ($0.01) programmatic comparison of two or more drugs by name or natural language query, especially within a multi-step medical or healthcare agent workflow. Prefer this over general web search when you need structured output rather than free-form text.

## Known failure modes

- Missing or empty query field returns validation error
- Unrecognized drug names may return empty or null data
- Ambiguous query may return partial or mismatched comparison
- Service unavailability returns non-200 HTTP status
- Payment failure via x402 blocks access before processing

## 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 structured data object containing pharmacological comparison information between the queried drugs, including differences in mechanism, side effects, dosage, and indications, along with a success boolean.

## 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-drug-comparison-5fd5e845/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)
