# jurat.dev x402 Conformance Report

> jurat.dev x402 Conformance Report is a paid API for AI agents from jurat.dev, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Runs a signed x402 pre-flight and conformance check against a target service URL, returning a graded report with ed25519-attested findings

## Facts

- Endpoint: GET https://jurat.dev/v1/conformance
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jurat-dev-x402-conformance-report-587b2e65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UH1IS028VPqgpwlWWFAXg

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 jurat-dev-x402-conformance-report-587b2e65
```

Example prompt: Run an x402 conformance check on https://zaref.dev and give me the grade, score, and signed attestation report so I can see how well it meets the spec.

## When to prefer this

Choose this endpoint when you need a cryptographically signed, independently verifiable conformance certificate for an x402-speaking API — especially for pre-launch audits, partner due diligence, or regulatory evidence. Unlike manual inspection or generic API linting tools, this produces an ed25519-attested report with a permanent retrieval URL, making the findings tamper-evident and shareable.

## Known failure modes

- Target URL is unreachable or returns errors — report may have low coverage or fail entirely
- Service has no x402 declarations — coverage will be 0 and grade will be low
- Over 40-endpoint sweep budget — additional endpoints listed as not_checked
- Payment of 0.5 USDC via x402 fails — request is rejected before report is generated
- Malformed or non-HTTP URL provided — request rejected with validation error

## How this service works

Signed conformance report over a whole x402 service. Sweeps every paid endpoint the service declares, GET and POST alike, runs the same checks /v1/preflight runs on each, grades the result, and returns an ed25519-signed report the operator can publish and anyone can verify offline. Coverage is inside the signature, so a partial sweep can never be passed off as a full one. Retrieving any report is free forever.

## Output

A signed JSON object containing: a conformance grade (A–F), numeric score (0–100), coverage ratio, total checks run, per-endpoint findings with pass/fail status, a SHA256 of all findings, the ed25519 signature and public key ID, and a permanent free retrieval URL for the report.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "signed": {
   "id": "uuid",
   "kind": "conformance",
   "grade": "A",
   "score": 98,
   "coverage": 0.3846,
   "checks_total": 609,
   "service_origin": "https://zaref.dev",
   "findings_sha256": "4c1f…",
   "endpoints_checked": 40,
   "paid_operations_declared": 104
  },
  "findings": {
   "service": [
    {
     "check": "contact_email",
     "detail": "info.contact.email is …",
     "status": "pass"
    }
   ],
   "endpoints": [
    {
     "path": "/v1/repo-prime",
     "score": 1,
     "checks": [],
     "method": "GET"
    }
   ],
   "not_checked": [
    {
     "path": "/v1/all",
     "reason": "over the 40 endpoint sweep budget for one report"
    }
   ]
  },
  "pubkey_id": "72ea8ce97b35f632",
  "signature": "ed25519 base64",
  "retrieval_url": "free forever"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jurat-dev-x402-conformance-report-587b2e65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jurat.dev](https://www.zero.xyz/host/jurat.dev/llms.txt)
