# AgentNOMOS Compliance Preflight

> AgentNOMOS Compliance Preflight is a paid API for AI agents from tooloracle.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Performs a cross-border regulatory compliance preflight scan for Asia-region data transfers, returning a signed ALLOW/REVIEW/BLOCK verdict with blocked fields and a SHA-256 receipt hash.

## Facts

- Endpoint: POST https://tooloracle.io/v2/nomos/preflight
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentnomos-compliance-preflight-0a32b7c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__gOmxKi0D-77sbR8fi9lE

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 agentnomos-compliance-preflight-0a32b7c3 -d '<json body>'
```

Example prompt: Before I send this batch of EU customer records to our Singapore hub for onward transfer to China, run a compliance preflight against GDPR, PIPL, and MAS rules and tell me whether it's ALLOW, REVIEW, or BLOCK, and which fields are flagged.

## When to prefer this

Choose this endpoint when an AI agent needs a fast, signed compliance gate before executing any cross-border data transfer involving EU data flowing to Asia-Pacific jurisdictions (Japan, India, Korea, Singapore, China). It is particularly valuable when you need a single call that covers multiple regulatory regimes simultaneously (GDPR + DPDP + PIPL + FSA + MAS), when operating under MCP/A2A/AIP agentic protocols, or when your audit trail requires a cryptographic receipt hash. Prefer this over manual legal review for automated pipelines where speed and auditability matter.

## Known failure modes

- Missing required body fields returns a 400 validation error
- Unsupported jurisdiction or corridor not covered returns an error or REVIEW verdict
- Payment failure (x402) blocks the call from executing
- Malformed bodyType enum value causes request rejection
- Ambiguous data fields may result in conservative REVIEW rather than ALLOW verdict

## How this service works

NOMOS Cross-Border Target Preflight: Asia scan + regulatory verdict (GDPR/DPDP/PIPL/FSA/MAS) + protocol match (MCP/A2A/AIP) in one signed call. Returns ALLOW/ALLOW_PUBLIC_SIGNAL_ONLY/REVIEW/BLOCK + blocked_fields + SHA-256 receipt_hash. Covers EU-Japan (adequacy OK), EU-India (SCCs required), EU-Korea (adequacy OK), EU-Singapore, EU-China (SG hub). Not legal advice.

## Output

Returns a JSON object with a compliance verdict (ALLOW, ALLOW_PUBLIC_SIGNAL_ONLY, REVIEW, or BLOCK), a list of blocked_fields that triggered restrictions, applicable regulatory frameworks assessed (GDPR, DPDP, PIPL, FSA, MAS), protocol match results (MCP/A2A/AIP), and a SHA-256 receipt_hash for audit trail purposes. The response is cryptographically signed.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentnomos-compliance-preflight-0a32b7c3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tooloracle.io](https://www.zero.xyz/host/tooloracle.io/llms.txt)
