# AllInOneCents Drug Search API

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

Searches for drug/medication information by name or query string, returning structured pharmaceutical data.

## Facts

- Endpoint: POST https://allin-onecents.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-37ef7f63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ReO9IOYg3b-GAI333_YeT

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

Example prompt: Search the drug database for 'ibuprofen' and give me the details about it — what it's used for, dosage info, and any key facts.

## When to prefer this

Use this endpoint when you need quick, cheap ($0.01) programmatic lookups of drug or medication information by name or keyword. Best for agents building medical reference tools, chatbots answering pharmaceutical questions, or workflows that need on-demand drug data without a full healthcare API subscription.

## Known failure modes

- Query string missing or empty — returns validation error
- Drug not found in database — returns empty or null data with success:false
- Payment not processed — 402 response blocking access
- Malformed request body — returns 400 error
- Service unavailable — 5xx error from upstream

## 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 drug information matching the query, such as drug name, indications, dosage, and related pharmaceutical metadata.

## 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-37ef7f63/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)
