# ARAKEL Machine Evidence Network – Machine Prove Endpoint

> ARAKEL Machine Evidence Network – Machine Prove Endpoint is a paid API for AI agents from proof.arakelproof.space, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns cryptographically signed machine-readable evidence proofs (OBSERVED, NOT_OBSERVED, or INCONCLUSIVE) about entities checked against official sources such as OFAC sanctions lists, with support for free preflight, $0.005 quick checks, batch checks, and counterparty dossiers.

## Facts

- Endpoint: GET https://proof.arakelproof.space/v1/machine/prove
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arakel-machine-evidence-network-machine-prove-endpoint-096dcfc7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8tVm5KaG9eJrD96ilKLF9

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 arakel-machine-evidence-network-machine-prove-endpoint-096dcfc7
```

Example prompt: Before I send funds to this wallet address 0xABC123, check it against OFAC and any available official watchlists and give me a signed NOT_OBSERVED proof I can keep for compliance records.

## When to prefer this

Choose this endpoint when you need machine-readable, cryptographically signed compliance evidence — particularly NOT_OBSERVED proofs — from official sources like OFAC, suitable for automated compliance workflows, audit trails, or counterparty due diligence before financial transactions. Prefer it over generic sanctions databases when you need an Ed25519-signed proof artifact rather than a human-readable report.

## Known failure modes

- Entity not found in any enabled source → returns INCONCLUSIVE
- Invalid or malformed entity identifier → 400 bad request
- Source temporarily unavailable → may return INCONCLUSIVE or error
- Payment not received or insufficient → 402 Payment Required
- Rate limit exceeded → 429 Too Many Requests

## How this service works

Machine-verifiable official-source evidence with free preflight and x402 USDC payments on Base.

## Output

A JSON object containing: a `result` field with value OBSERVED, NOT_OBSERVED, or INCONCLUSIVE; a `schema` identifier (arakel.machine-evidence.v2); a `source` object identifying the official data source checked (e.g. OFAC); and a `signature` object with an Ed25519 cryptographic signature attesting to the result's authenticity.

## 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": [
      "source",
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "format": "date-time"
      },
      "from": {
       "type": "string",
       "format": "date-time"
      },
      "term": {
       "type": "string",
       "description": "Optional search term"
      },
      "entity": {
       "type": "string",
       "description": "Company, person, entity, ticker, CIK, recipient, or organization"
      },
      "source": {
       "enum": [
        "federal-register",
        "ofac",
        "fda",
        "usaspending"
       ],
       "type": "string",
       "description": "Currently enabled official source adapter"
      },
      "event_type": {
       "type": "string",
       "description": "listing_present, listing_added, recall, award, publication, etc."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "OBSERVED|NOT_OBSERVED|INCONCLUSIVE",
  "schema": "arakel.machine-evidence.v2",
  "source": {
   "id": "ofac"
  },
  "signature": {
   "alg": "Ed25519"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arakel-machine-evidence-network-machine-prove-endpoint-096dcfc7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proof.arakelproof.space](https://www.zero.xyz/host/proof.arakelproof.space/llms.txt)
