# EU AI Act Classifier

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

Classifies an AI system under the EU AI Act risk framework based on a plain-language description of what it does

## Facts

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

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 eu-ai-act-classifier-f36cb19e
```

Example prompt: Can you classify my AI system under the EU AI Act? It's a hiring tool that automatically screens and ranks job applicants based on their CVs and interview scores.

## When to prefer this

Choose this endpoint when you need a fast, auditable EU AI Act risk classification for a described AI system without building your own regulatory logic. Ideal for compliance workflows, product reviews, or regulatory due diligence where a cryptographic audit trail is required. Prefer this over general LLM prompting when you need a structured, repeatable classification backed by an audit record.

## Known failure modes

- Missing or empty description parameter returns a validation error
- Description too vague or ambiguous may yield an uncertain or broad classification
- Network timeout on upstream classification model
- Invalid query parameter format returns a 400 error
- Service unavailable returns a 5xx with no classification result

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns an EU AI Act risk classification (e.g. unacceptable risk, high-risk, limited risk, or minimal risk) for the described AI system, along with relevant regulatory obligations and an audit record containing a cryptographic chain hash for traceability.

## 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/eu-ai-act-classifier-f36cb19e/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)
