Machine Readiness
Stored receipt and evidence
58
65
75
0
100
Samples
No stored offer samples.
Samples
/x402/email-reputation-score
Calculate a trust score for an email address. Assesses domain age, MX configuration, disposable domain detection, and email provider reputation. Returns a 0-100 risk score.
https://api.strale.io/x402/email-reputation-score/x402/company-name-match
Fuzzy match and normalize company names. Compares two names accounting for Ltd/Limited, AB/Aktiebolag, Inc/Incorporated, GmbH, etc. Returns match confidence using Levenshtein, Jaro-Winkler, and token overlap algorithms.
https://api.strale.io/x402/company-name-match/x402/email-validate
Validate an email address: RFC 5322 syntax, MX records, 5,361 disposable domain detection, role-based address detection (35 patterns), free provider detection, and typo suggestion for common providers (gmial.com ? gmail.com). Returns delive
https://api.strale.io/x402/email-validateSamples
No stored product samples.
Document
# Search engines User-agent: Googlebot Allow: / User-agent: Bingbot Allow: / # Social User-agent: Twitterbot Allow: / User-agent: facebookexternalhit Allow: / # AI crawlers welcome User-agent: GPTBot Allow: / User-agent: Claude-Web Allow: / User-agent: anthropic-ai Allow: / User-agent: Google-Extended Allow: / User-agent: Amazonbot Allow: / User-agent: cohere-ai Allow: / User-agent: PerplexityBot Allow: / User-agent: * Allow: / Allow: /.well-known/ Sitemap: https://strale.dev/sitemap.xml
Document
# Strale
> The trust layer of the agent economy. 270+ quality-scored API capabilities for AI agents.
Strale is a capability marketplace for AI agents. It provides compliance checks, company data, payment validation, regulatory intelligence, and developer tools — all with transparent per-call pricing and quality scores.
## x402 Pay-Per-Use (recommended for agents)
All 270+ capabilities are available via x402 — the HTTP-native payment protocol. Pay per request with USDC on Base mainnet. No signup, no API key needed.
- Catalog: GET https://api.strale.io/x402/catalog
- Discovery: GET https://api.strale.io/.well-known/x402.json
- Protocol: USDC on Base mainnet (eip155:8453)
- Pricing: $0.005 to $0.10 per call depending on capability
Example:
GET https://api.strale.io/x402/sanctions-check?name=John+Doe
→ HTTP 402 with paymentRequirements (USDC, $0.02)
→ Retry with X-Payment header containing signed USDC transfer
→ HTTP 200 with sanctions screening result
## API Key Access (for developers)
- Base URL: https://api.strale.io/v1
- Execution: POST /v1/do
- Auth: Bearer token (sign up at strale.dev)
- Pricing: EUR wallet, prepaid via Stripe
- Trial: €2.00 free credits, no card required
### Response structure
POST /v1/do returns a two-tier response:
```
{
"result": { // What you asked for
"transaction_id": "...",
"status": "completed",
"capability_used": "iban-validate",
"output": { ... }, // The actual capability result
"provenance": { "source": "...", "fetched_at": "..." },
"price_cents": 0,
"latency_ms": 8
},
"meta": { // Trust layer metadata
"quality": { "sqs": 85, "label": "Good", ... },
"execution_guidance": { "usable": true, "strategy": "direct" },
"audit": { ... } // EU AI Act compliant audit trail
}
}
```
Free-tier responses also include `free_tier`, `usage`, and `upgrade` at the top level.
Error responses are flat: `error_code` + `message` + `details`.
## MCP Server
- npm: strale-mcp
- Config: claude mcp add strale -- npx strale-mcp
- Works with Claude, Cursor, Windsurf, and any MCP client
## A2A Protocol
- Agent Card: GET https://api.strale.io/.well-known/agent-card.json
- Task endpoint: POST https://api.strale.io/a2a
## Capability categories
- Company data: Business registry lookups across 27 countries
- Compliance & KYC: Sanctions screening, PEP checks, adverse media, beneficial ownership, AML risk scoring
- Financial validation: IBAN validation, VAT verification (VIES), BIC/SWIFT lookup, exchange rates, invoice validation
- Regulatory intelligence: EU AI Act classification, GDPR website audits, data protection authority lookup
- Web intelligence: Domain reputation, WHOIS, SSL checks, tech stack detection
- Developer tools: Code conversion, API generation, schema validation
- Data processing: PII redaction, translation, summarization
## Bundled solutions
100 multi-capability workflows including:
- Nordic KYC (Sweden, Norway, Denmark, Finland)
- Web3 Counterparty KYB
- DeFi Risk Check
- B2B Payment Validation
- GDPR Compliance Audit
- Token Project Due Diligence
- Full list: GET https://api.strale.io/v1/solutions
## Quality
Every capability has a dual-profile Strale Quality Score (SQS) with grades A through E, updated continuously via automated test suites.
## Links
- Website: https://strale.dev
- API docs: https://strale.dev/docs
- x402 catalog: https://api.strale.io/x402/catalog
- MCP server: https://www.npmjs.com/package/strale-mcp
- Agent Card: https://api.strale.io/.well-known/agent-card.json
- Contact: hello@strale.io
Document
Not stored for this site.