# Animica Health Model Evaluate

> Animica Health Model Evaluate is a paid API for AI agents from animica.dev, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-15).

Runs a named evaluation suite against a specific model version and returns health/quality assessment results

## Facts

- Endpoint: POST https://animica.dev/x402/health/model/evaluate
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/animica-health-model-evaluate-d5abae2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_En_vpY-oc6DO9hDQjiBVV

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-model-evaluate-d5abae2a -d '<json body>'
```

Example prompt: Run the 'accuracy' evaluation suite on model 'llama-3-8b' version 2 using Animica and tell me the results.

## When to prefer this

Use this endpoint when you need to programmatically evaluate a specific AI model version against a predefined health or quality suite on the Animica platform, especially within automated CI/CD pipelines, scheduled monitoring workflows, or when comparing model versions. Prefer this over manual evaluation when you need reproducible, pay-per-call on-demand benchmarking without managing infrastructure.

## Known failure modes

- Invalid or unknown suite name returns an error — use GET /health/v1/evaluations/suites to retrieve valid suite names
- Unknown model_id or model_version combination returns a not-found error
- Payment failure (insufficient USDC balance) blocks the call
- Malformed request body returns a 400 validation error
- Model version mismatch or incompatibility with the suite may return a partial or error result

## 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 object containing the evaluation results for the specified model version against the named suite, including scores, pass/fail indicators, and per-test metrics as defined by the suite.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "suite": {
   "type": "string",
   "description": "from GET /health/v1/evaluations/suites"
  },
  "model_id": {
   "type": "string"
  },
  "model_version": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/animica-health-model-evaluate-d5abae2a/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)
