# AllInOneCents Drug Information API

> AllInOneCents Drug Information API is a paid API for AI agents from allinonecents.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Accepts a natural language query about a drug or medication and returns relevant medical/pharmaceutical information

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/drug
- 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-information-api-7d2398e8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iK-mZSTUK6ec1j2HvjZEK

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-7d2398e8 -d '<json body>'
```

Example prompt: Can you look up drug information for metformin — I want to know its uses, side effects, and general pharmaceutical details?

## When to prefer this

Choose this endpoint when you need quick, low-cost ($0.01) pharmaceutical or drug information lookup via a simple natural language query, especially when building lightweight agents that need occasional medical reference data without subscribing to a full medical API service.

## Known failure modes

- Unrecognized or misspelled drug name returns empty or null data
- Overly vague query may return generic or unhelpful results
- Network or server error returns a non-200 status
- Payment failure via x402 results in 402 response before query is processed
- Ambiguous query matching multiple drugs may return unexpected results

## 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 pharmaceutical information about the queried drug, such as uses, dosage, side effects, or classification details.

## 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-7d2398e8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allinonecents.orbonomy.xyz](https://www.zero.xyz/host/allinonecents.orbonomy.xyz/llms.txt)
