Deterministic, source-cited regulatory applicability and deadline checks for AI systems an
Deterministic, source-cited regulatory applicability and deadline checks for AI systems and automated decision tools. Full request and response fields are documented at /openapi.json.
500000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated
Provider
compliancecheck-x402.fly.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xB38Bfc5B940B9b650b1BB9D502024Bb9665425C2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "500000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"colorado": {},
"jurisdictions": [
"US-NYC"
],
"nyc": {
"actor_type": "vendor"
},
"organization": {},
"system": {}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-07",
"cross_cutting_requirements": [],
"derived_facts": [],
"jurisdictions": [
"US-NYC"
],
"notice": "Decision-support output derived from encoded rules and cited official sources; it is not a substitute for legal advice.",
"request_hash": "0000000000000000000000000000000000000000000000000000000000000000",
"results": [],
"ruleset_hash": "ed7490b5055fd902",
"ruleset_version": "2026.08.07.17"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"description": "ComplianceCheck scan request. Jurisdiction-specific fact objects are summarized here; see /openapi.json for every accepted field.",
"properties": {
"as_of": {
"description": "Evaluation date. Omit to use the server current date.",
"format": "date",
"type": "string"
},
"colorado": {
"additionalProperties": true,
"description": "Colorado ADMT facts used by the regulatory engine. See /openapi.json for the complete accepted field vocabulary.",
"type": "object"
},
"jurisdictions": {
"description": "Jurisdictions to evaluate. Omit to infer them from populated fact namespaces.",
"items": {
"enum": [
"EU",
"US-CO",
"US-NYC"
],
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"nyc": {
"additionalProperties": true,
"description": "NYC Local Law 144 / AEDT facts used by the regulatory engine. See /openapi.json for the complete accepted field vocabulary.",
"type": "object"
},
"organization": {
"additionalProperties": true,
"description": "Organization and actor facts used by the regulatory engine. See /openapi.json for the complete accepted field vocabulary.",
"type": "object"
},
"system": {
"additionalProperties": true,
"description": "AI system facts used by the regulatory engine. See /openapi.json for the complete accepted field vocabulary.",
"type": "object"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": true,
"description": "ComplianceCheck regulatory scan response. This discovery schema keeps the stable envelope only; see /openapi.json for detailed finding fields.",
"properties": {
"as_of": {
"format": "date",
"type": "string"
},
"cross_cutting_requirements": {
"description": "Cross-cutting regulatory requirements. Items contain the full source-cited finding shape documented at /openapi.json.",
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"derived_facts": {
"description": "Derived facts. Items contain the full source-cited finding shape documented at /openapi.json.",
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"jurisdictions": {
"items": {
"enum": [
"EU",
"US-CO",
"US-NYC"
],
"type": "string"
},
"type": "array"
},
"notice": {
"type": "string"
},
"request_hash": {
"pattern": "^[0-9a-f]{64}$",
"type": "string"
},
"results": {
"description": "Rule applicability findings. Items contain the full source-cited finding shape documented at /openapi.json.",
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"ruleset_hash": {
"type": "string"
},
"ruleset_version": {
"type": "string"
}
},
"required": [
"as_of",
"jurisdictions",
"ruleset_version",
"ruleset_hash",
"results",
"request_hash"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://compliancecheck-x402.fly.dev/v1/ai-regulatory-scan" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://compliancecheck-x402.fly.dev/v1/ai-regulatory-scan");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://compliancecheck-x402.fly.dev/v1/ai-regulatory-scan")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12861.json, and this resource appears in /discovery/resources and /discovery/search.