Güvenlik araştırmacıları, gazeteciler ve AI güvenlik mühendisleri için açık REST API ve MCP protokolü. Şeffaf, rate-limitli, anahtarsız kamu erişimi.
Execute real-time API queries against ALPAR AI public REST endpoints.
Click "Execute Test Request" above to run live query.
No API key or credentials required for public endpoints.
/api/v1/statsPlatform StatisticsReturns aggregate platform stats: total incidents, providers tracked, average trust score and incident breakdown by category.
Örnek İstek
curl https://alparai.com/api/v1/stats
Örnek Yanıt
{
"data": {
"total_incidents": 142,
"total_providers": 14,
"average_trust_score": 72.5,
"by_category": {
"misinformation": 38,
"privacy": 29,
"bias": 21
}
},
"meta": { "generated_at": "2026-07-23T16:00:00.000Z" }
}/api/v1/leaderboardProvider LeaderboardReturns all tracked AI providers ranked by trust score, with response rate and incident count.
Örnek İstek
curl https://alparai.com/api/v1/leaderboard
Örnek Yanıt
{
"data": [
{
"rank": 1,
"id": "...",
"slug": "openai",
"name": "OpenAI",
"is_verified": true,
"trust_score": 82,
"incident_count": 14,
"response_count": 11,
"response_rate": 78
}
],
"meta": { "total": 14, "generated_at": "2026-07-23T16:00:00.000Z" }
}/api/v1/providersAI Providers ListReturns tracked AI providers with SLA, uptime, MTTR metrics and verification status.
Örnek İstek
curl https://alparai.com/api/v1/providers
Örnek Yanıt
{
"data": [
{
"id": "...",
"name": "Anthropic",
"slug": "anthropic",
"trust_score": 88,
"sla_uptime_pct": 99.95,
"sla_mttr_hours": 1.2
}
],
"meta": { "count": 14 }
}/api/v1/incidentsPublished IncidentsPaginated list of published AI accountability incidents. Filter by category, severity, provider, and media_type.
Örnek İstek
curl "https://alparai.com/api/v1/incidents?limit=10&offset=0"
Örnek Yanıt
{
"data": [
{
"id": "...",
"title": "...",
"category": "misinformation",
"severity": "high",
"media_type": "text",
"synthid_detected": false
}
],
"meta": { "total": 142, "limit": 10, "offset": 0 }
}/api/v1/incidents/:idSingle Incident DetailFull details of a specific incident including PII-scrubbed evidence and provider response.
Örnek İstek
curl https://alparai.com/api/v1/incidents/00000000-0000-0000-0000-000000000000
Örnek Yanıt
{
"data": {
"id": "00000000-0000-0000-0000-000000000000",
"title": "...",
"description": "...",
"category": "bias",
"severity": "medium"
}
}/api/v1/incidents/:id/passportEU AI Act Art. 73 Passport ExportExport structured Passport compliant with EU AI Act Article 73 serious incident reporting.
Örnek İstek
curl https://alparai.com/api/v1/incidents/00000000-0000-0000-0000-000000000000/passport
Örnek Yanıt
{
"passport": {
"article_73_compliance": true,
"incident_id": "00000000-0000-0000-0000-000000000000",
"eu_ai_act_classification": "High-Risk AI System Breach",
"reporting_deadline_days": 15
}
}/api/v1/slopsquattingSlopsquatting FeedTracks AI-hallucinated package names for dependency-confusion defense.
Örnek İstek
curl "https://alparai.com/api/v1/slopsquatting?ecosystem=npm&limit=20"
Örnek Yanıt
{
"count": 1,
"reports": [
{
"id": "...",
"package_name": "express-auth-ai-guard",
"ecosystem": "npm",
"confirmed_real": false,
"hallucinated_by_model_id": "gpt-4"
}
],
"_meta": { "ecosystem": "npm", "limit": 20 }
}/api/v1/regulatorsRegulator Feed API (EU AI Office / AISI)Machine-readable feed for EU AI Office, UK AISI, US AISI. Supports JSON and RSS 2.0 formats.
Örnek İstek
curl "https://alparai.com/api/v1/regulators?authority=eu-ai-office&format=json"
Örnek Yanıt
{
"authority": "eu-ai-office",
"compliance_framework": "EU AI Act Art. 73",
"count": 10,
"incidents": [...]
}/api/mcpALPAR MCP Server (JSON-RPC 2.0)Model Context Protocol endpoint for AI agent tools: alpar_search_incidents, alpar_get_passport, etc.
Örnek İstek
curl -X POST https://alparai.com/api/mcp -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"alpar_search_incidents","arguments":{"query":"bias"}},"id":1}'Örnek Yanıt
{
"jsonrpc": "2.0",
"result": { "content": [{ "type": "text", "text": "..." }] },
"id": 1
}/api/v1/playbooksVertical Sector PlaybooksSector-specific compliance intake & risk playbooks for Health (HIPAA/FDA), Legal, and Finance.
Örnek İstek
curl "https://alparai.com/api/v1/playbooks?sector=health"
Örnek Yanıt
{
"count": 1,
"playbooks": [
{
"id": "...",
"sector": "health",
"title": "Healthcare AI Diagnostic Risk Playbook",
"framework": "FDA SaMD & HIPAA"
}
],
"_meta": { "sector": "health", "limit": 20 }
}/api/v1/jailbreaksPrompt Injection MuseumCurated, PII-masked red-team library of reproducible jailbreaks and prompt injections.
Örnek İstek
curl "https://alparai.com/api/v1/jailbreaks?technique=prompt_injection"
Örnek Yanıt
{
"count": 1,
"jailbreaks": [
{
"id": "...",
"title": "Indirect Prompt Injection via Web Summarization",
"technique": "prompt_injection",
"severity": "critical",
"reproducible": true
}
],
"_meta": { "technique": "prompt_injection", "limit": 20 }
}/api/v1/provenanceContent Provenance InspectionVerify digital C2PA manifest signatures and SynthID watermark signals.
Örnek İstek
curl -X POST https://alparai.com/api/v1/provenance -H "Content-Type: application/json" -d '{"manifest_url":"https://c2pa.org/sample.jpg"}'Örnek Yanıt
{
"provenance": {
"c2pa_detected": true,
"synthid_detected": false,
"verification_status": "verified_synthetic",
"alpar_provenance_seal": "ALPAR AI Content Integrity Guardian v1.0"
}
}/api/v1/trust-rankingAI Vendor Trust Score RankingPublic ranking index based on incident frequency, SLA MTTR, and provider response rate.
Örnek İstek
curl https://alparai.com/api/v1/trust-ranking
Örnek Yanıt
{
"count": 0,
"rankings": [],
"status": "pending_first_measurement",
"generated_at": "2026-07-23T16:00:00.000Z"
}/api/v1/bench-trBENCH-TR Turkish LLM EvaluationEvaluation benchmark dataset for Turkish language accuracy, bias avoidance, and grammar.
Örnek İstek
curl https://alparai.com/api/v1/bench-tr
Örnek Yanıt
{
"count": 4,
"evaluations": [
{
"model_name": "gemini-1.5-flash",
"provider_slug": "google",
"tr_grammar_score": 100,
"tr_bias_score": 100,
"tr_factuality_pct": 100,
"eval_dataset_ver": "v1.0-TR-free-tier"
}
],
"benchmark": "BENCH-TR (Turkish LLM Evaluation Benchmark)"
}/api/v1/whistleblowerAnonymous Whistleblower DisclosureZero-knowledge anonymous disclosure channel for AI lab employees. PII-scrubbed.
Örnek İstek
curl -X POST https://alparai.com/api/v1/whistleblower -H "Content-Type: application/json" -d '{"lab_name":"LabX","breach_description":"Safety evaluation bypass"}'Örnek Yanıt
{
"message": "Whistleblower disclosure submitted securely",
"receipt": {
"submission_id": "...",
"receipt_hash": "a1b2c3...",
"anonymity_status": "Zero-Knowledge Hashed & PII Scrubbed"
}
}/api/v1/litigation/exportLitigation Chain-of-Custody ExportCourt-admissible PII-scrubbed evidence package with SHA256 integrity hash for legal proceedings.
Örnek İstek
curl "https://alparai.com/api/v1/litigation/export?incident_id=00000000-0000-0000-0000-000000000000"
Örnek Yanıt
{
"litigation_package": {
"package_id": "LIT-00000000",
"court_admissible_notice": "PII-masked cryptographic chain-of-custody evidence package",
"chain_of_custody": {
"sha256_integrity_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
}
}
}/api/v1/extractURL Evidence ExtractorExtracts metadata and archives content from external incident URL links.
Örnek İstek
curl -X POST https://alparai.com/api/v1/extract -H "Content-Type: application/json" -d '{"url":"https://example.com/incident-article"}'Örnek Yanıt
{
"title": "Article Title",
"domain": "example.com",
"archived_url": "https://alparai.com/archive/..."
}/api/v1/risk/auditEU AI Act Risk ClassifierClassifies an AI system description according to EU AI Act Risk Tiers (Unacceptable, High, Minimal).
Örnek İstek
curl -X POST https://alparai.com/api/v1/risk/audit -H "Content-Type: application/json" -d '{"system_description":"Biometric identification in public spaces"}'Örnek Yanıt
{
"risk_tier": "unacceptable_risk",
"article_reference": "EU AI Act Article 5",
"compliance_requirements": ["Prohibited AI System"]
}/api/v1/oecd/feedOECD AI Incident Taxonomy FeedExports published incidents formatted per OECD AI Incident Reporting framework.
Örnek İstek
curl https://alparai.com/api/v1/oecd/feed
Örnek Yanıt
{
"oecd_framework_ver": "2026.1",
"incidents": [...]
}/api/v1/incidents/exportIncidents Bulk CSV / JSON ExportBulk data export of all published incidents for academic and policy research.
Örnek İstek
curl "https://alparai.com/api/v1/incidents/export?format=json"
Örnek Yanıt
{
"export_version": "1.0",
"total_records": 142,
"data": [...]
}Limit aşıldığında HTTP 429 döner. Kalan kota için X-RateLimit-* header'larını kontrol edin.
Tüm endpoint'ler CORS açık — herhangi bir istemciden erişilebilir.
Access-Control-Allow-Origin: *
https://alparai.com/api/v1
Tüm endpoint'ler JSON yanıtı döner. Gizli API anahtarı gerekmez.