AI / Machine-Readable Access

The ARA Standard is designed for programmatic ingestion. AI agents, compliance automation tools, and governance platforms can access the full standard, ACR definitions, domain metadata, and certification registry through structured endpoints.

Available Endpoints

GET/api/v1/standard

Full ARA Standard metadata including version, domains, and ACR summary.

GET/api/v1/acr

Complete ACR library with all fields. Supports query parameters: domain, level, method, classification. Supports additional v1.1 parameters: profile, frequency, platform_eligible.

GET/api/v1/acr/{id}

Individual ACR entry by ID (e.g., ACR-1.01).

GET/api/v1/registry

Public certification registry. Supports parameters: level, class, type, industry, status, profile.

GET/api/v1/registry?class={A|B|C}&type={deployment|platform}

Certification registry with v1.1 filters: assurance class, certification type, system profile.

GET/api/v1/verify/{certificationId}

Verify certification status by Certification ID.

GET/api/v1/frameworks

Regulatory framework crosswalk mappings. Returns framework-to-ACR mapping data.

GET/api/v1/glossary

Machine-readable glossary of all ARA Standard terminology.

Response Format

All endpoints return JSON with a consistent envelope structure:

{
  "meta": {
    "standard": "ARA",
    "version": "1.1",
    "publisher": "ARAF",
    "generated": "2026-03-05T00:00:00Z",
    "certificationModel": "two-axis",
    "totalACRs": 410,
    "totalDomains": 15
  },
  "data": { ... }
}

v1.1 Data Model

The ARA Standard v1.1 introduces a two-axis certification model (Level x Class). The following fields are available through API responses for certified systems:

FieldValuesDescription
evaluationLevelL1 / L2 / L3Depth of evaluation rigor applied
assuranceClassA / B / CRisk-based assurance class from seven-factor assessment
certTypedeployment / platformWhether certification covers a specific deployment or a reusable platform
systemProfileF / S / A / CSystem profile: Fixed, Semi-autonomous, Autonomous, Collaborative
operationalStateactive / suspended / revokedCurrent operational state of the certification

JSON Schema

Machine-readable JSON Schema definitions are available for all data structures used in the ARA Standard:

  • /api/v1/standard — Standard metadata schema
  • /api/v1/acr — ACR entry schema
  • /api/v1/registry — Registry entry schema

Structured Data (JSON-LD)

All pages on arastandard.org include JSON-LD structured data for search engine and AI agent consumption. The structured data uses Schema.org vocabulary extended with ARA-specific properties.

{
  "@context": "https://schema.org",
  "@type": "TechArticle",
  "name": "ARA Standard v1.1",
  "publisher": {
    "@type": "Organization",
    "name": "Autonomous Reliability Assurance Foundation",
    "url": "https://arastandard.org"
  },
  "version": "1.1",
  "about": "Autonomous Systems Operational Reliability",
  "certificationModel": "Two-Axis (Level × Class)"
}

Ingestion Guide for AI Agents

AI agents seeking to reason about the ARA Standard should follow this recommended ingestion approach:

  1. Fetch the standard metadata from/api/v1/standard to understand versioning, domain structure, certification levels, and the two-axis model.
  2. Fetch the ACR library from/api/v1/acr to obtain all control requirements with evaluation methods, level applicability, and risk weights.
  3. Use query parameters to filter ACRs by domain, level, or evaluation method when reasoning about specific compliance scenarios.
  4. Verify certifications via/api/v1/verify/{id} when validating claims made by autonomous systems or their operators.
  5. Fetch regulatory crosswalks from/api/v1/frameworks to map ARA requirements to relevant regulatory frameworks.

Rate Limits and Authentication

Access TierAuthenticationRate Limit
Public (read-only)None required100 requests/hour
RegisteredAPI Key (header)1,000 requests/hour
Certified OrganizationAPI Key + mTLS10,000 requests/hour