# Animica Health Terminology Map

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

Translates or maps medical/health terminology codes and concepts between source and target systems by converting provided source code.

## Facts

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

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-map-8b5840d3 -d '<json body>'
```

Example prompt: Map the ICD-10 code 'J18.9' from ICD-10 to SNOMED CT so I can use it in our FHIR system.

## When to prefer this

Choose this endpoint when you need a pay-per-call, no-subscription health terminology mapping between named coding systems (e.g. ICD-10, SNOMED, LOINC, RxNorm, NDC) and want a lightweight REST call without setting up a dedicated terminology server or maintaining a local mapping database.

## Known failure modes

- Unknown source or target system identifier returns an error or empty mapping
- Invalid or unrecognized source code returns no result
- Missing required fields (to, code, from) results in a validation error
- Payment failure due to insufficient USDC balance prevents the call
- Ambiguous code with multiple possible mappings may return partial or ranked results

## 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 the mapped or translated terminology concept in the target system, including the equivalent code or term corresponding to the provided source code.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "target system"
  },
  "code": {
   "type": "string",
   "description": "the source code"
  },
  "from": {
   "type": "string",
   "description": "source system"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/animica-health-terminology-map-8b5840d3/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)
