# EU AI Act Risk Classifier

> EU AI Act Risk Classifier is a paid API for AI agents from api.strale.io, paid per call via x402, $0.216001/call, status unknown (last checked 2026-09-15).

Classifies an AI system's risk level under the EU AI Act using rule-based analysis against Annex III, Article 5, Article 6, and Article 50 criteria

## Facts

- Endpoint: GET https://api.strale.io/x402/eu-ai-act-classify
- Price: $0.216001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-fa3a69f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9bgnPwr2AKrx-CbKycbqL

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 api-strale-io-fa3a69f9
```

Example prompt: Can you classify this AI system under the EU AI Act and tell me its risk level? It's a CV screening tool that automatically filters job applicants based on predicted performance scores.

## When to prefer this

Use this endpoint when you need a fast, rule-based EU AI Act compliance check for an AI system description without engaging a human legal expert. Ideal for initial triage, developer compliance checks, or automated regulatory screening pipelines. Prefer this over general LLM reasoning when you need structured, citation-backed output tied to specific EU AI Act articles and annexes.

## Known failure modes

- Missing or empty description query parameter returns validation error
- Vague description may yield ambiguous or low-confidence classification
- Service unavailable returns HTTP 402 or 5xx error
- Description too short to match against regulatory criteria may return minimal-risk by default

## How this service works

Classify an AI system's risk level under the EU AI Act. Rule-based analysis against Annex III and Article 5/6/50 criteria.

## Output

Returns a structured risk classification indicating the AI system's risk level (e.g. unacceptable, high-risk, limited-risk, minimal-risk) under the EU AI Act, with references to the specific Annex III categories or Article 5/6/50 criteria that triggered the classification.

## Example request

```json
{
 "description": "A machine learning model that analyzes medical imaging scans to detect early-stage tumors in radiological images. The system processes patient data and provides diagnostic recommendations to radiologists as a decision-support tool."
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "description"
     ],
     "properties": {
      "description": {
       "type": "string",
       "description": "Description of the AI system"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-fa3a69f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
