# AllInOneCents Drug Information API

> AllInOneCents Drug Information API 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).

Accepts a natural language query about drugs or medications and returns structured medical/pharmaceutical information.

## Facts

- Endpoint: POST https://allin-onecents.orbonomy.xyz/api/drug
- 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-drug-information-api-73d0a435
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VlMexV0P5OKOJeKkgqPVY

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-information-api-73d0a435 -d '<json body>'
```

Example prompt: What are the common side effects, typical dosage, and drug interactions for metformin?

## When to prefer this

Use this endpoint when you need quick, low-cost ($0.01) drug or medication lookups via a simple text query interface. Prefer this over specialized pharmaceutical databases when cost and simplicity matter more than guaranteed depth or sourcing transparency. Best suited for general drug information queries rather than clinical-grade authoritative references.

## Known failure modes

- Query string missing or empty — returns validation error
- Unrecognized drug name or ambiguous query — may return empty or low-confidence data
- Service unavailability — non-200 response or timeout
- Payment failure via x402 — 402 response if USDC payment is not provided
- Overly broad or nonsensical query — unpredictable data quality

## 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 JSON object with a 'success' boolean and a 'data' object containing structured pharmaceutical or medical information related to the queried drug or medication.

## 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-information-api-73d0a435/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)
