# AllInOneCents Drug Search API

> AllInOneCents Drug Search 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-14).

Searches for drug/medication information by query string and returns structured pharmaceutical data

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/drug-search
- 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-search-api-8ca5bf0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PE7Y3huZEWXo5gVGV5rbt

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-search-api-8ca5bf0d -d '<json body>'
```

Example prompt: Search for drug information on ibuprofen — I need to know what it's used for, dosage, and any key details about it.

## When to prefer this

Use this endpoint when you need quick, low-cost ($0.01) programmatic lookups of drug or medication information by name or keyword, especially in agentic workflows where medical/pharmaceutical data enrichment is needed at scale without a large API budget.

## Known failure modes

- Missing or empty query field returns validation error
- Unrecognized drug name may return empty or null data
- Network timeout if upstream pharmaceutical database is unavailable
- Malformed request body returns 400 error
- Payment failure via x402 protocol blocks request

## 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 information about the queried drug, such as uses, dosage, classification, or related 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-search-api-8ca5bf0d/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)
