# Strale AI Act Assessment

> Strale AI Act Assessment is a paid API for AI agents from api.strale.io, paid per call via x402, $0.864001/call, status unknown (last checked 2026-09-16).

Assesses an AI system's compliance posture under the EU AI Act given a system description and deployment country

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/ai-act-assess
- Price: $0.864001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-ai-act-assessment-09d5b2c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PZ1E1ieTdJgz-E4I9tbJy

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 strale-ai-act-assessment-09d5b2c2 -d '<json body>'
```

Example prompt: Can you run an EU AI Act compliance assessment for our customer churn prediction system — it automatically makes loan eligibility decisions and will be deployed in Germany (DE)? Our company is FinanceFlow GmbH.

## When to prefer this

Use this endpoint when you need a structured, auditable EU AI Act risk classification for a specific AI system before or during European deployment. Particularly useful for compliance teams, legal reviewers, or AI developers who need to understand their obligations under EU AI Act and want JSON output with an audit trail rather than generic legal advice.

## Known failure modes

- Missing required 'description' field returns 400 validation error
- Invalid or unsupported ISO 3166-1 country code returns 400 or unrecognized country error
- Ambiguous or very short system description may yield low-confidence classification
- Payment failure via x402 protocol returns 402 Payment Required
- Service unavailability returns 503

## How this service works

Classify your AI system's risk level under the EU AI Act before the August 2026 deadline. Risk classification, obligations, and supervisory authority.

## Output

A structured JSON response containing an EU AI Act risk classification (e.g. high-risk, limited risk, minimal risk), applicable regulatory obligations, compliance posture analysis, and an audit trail — all keyed to the described AI system and deployment country.

## Example request

```json
{
 "company": "TechVision AI Labs",
 "description": "A machine learning system that analyzes customer support tickets and automatically categorizes them by urgency and topic to route to appropriate support teams. The system uses natural language processing to extract key information from ticket text and assigns priority scores based on detected keywords and sentiment analysis.",
 "deployment_country": "DE"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "company": {
   "type": "string"
  },
  "description": {
   "type": "string",
   "description": "Describe what your AI system does"
  },
  "deployment_country": {
   "type": "string",
   "description": "ISO 3166-1 alpha-2 country code"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-ai-act-assessment-09d5b2c2/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)
