# Animica Health Terminology Search

> Animica Health Terminology Search is a paid API for AI agents from animica.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Search medical/health terminology by code or term string, optionally restricted to a specific loaded coding system

## Facts

- Endpoint: POST https://animica.dev/x402/health/terminology/search
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/animica-health-terminology-search-1661f277
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fWlNooqCbwnM2DrUaxNy-

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 animica-health-terminology-search-1661f277 -d '<json body>'
```

Example prompt: Search health terminology for 'myocardial infarction' and give me up to 20 matching codes and terms from the ICD system.

## When to prefer this

Choose this endpoint when you need to search across medical or health coding systems (e.g. ICD, SNOMED, LOINC) by free-text term or code string, especially when you want pay-per-call access with no API key or subscription required. Prefer over general web search when you need structured, coded health terminology results.

## Known failure modes

- Empty results if query matches no loaded terminology
- Invalid system name returns error or empty set
- Limit out of range (must be 1-50) causes validation error
- Payment failure via x402 if USDC balance is insufficient
- Malformed request body returns 4xx error

## How this service works

Animica Python Cloud: deploy a Python function to animica.dev, get a public endpoint, and earn ANM every time someone runs it. Free AI (OpenAI-compatible, no key), free scheduled Workers, and an 80/20 developer split.

## Output

A JSON response containing a ranked list of matching terminology entries (up to the requested limit), each including the code identifier, term name, and the coding system it belongs to.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "1-50 (default 10)"
  },
  "query": {
   "type": "string",
   "description": "a code or a term"
  },
  "system": {
   "type": "string",
   "description": "restrict to one loaded system"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/animica-health-terminology-search-1661f277/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from animica.dev](https://www.zero.xyz/host/animica.dev/llms.txt)
