# ARAKEL Counterparty Government Check

> ARAKEL Counterparty Government Check is a paid API for AI agents from proof.arakelproof.space, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-16).

Checks whether a company, organization, or person appears in government watchlists and official sources, returning a signed OBSERVED/NOT_OBSERVED/INCONCLUSIVE machine-evidence proof.

## Facts

- Endpoint: GET https://proof.arakelproof.space/v1/counterparty-government-check
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arakel-counterparty-government-check-7a36baea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nb6TrTTYHvElhi9I55Gym

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-counterparty-government-check-7a36baea
```

Example prompt: Can you screen 'Meridian Global Logistics' against government watchlists and get me a signed machine-evidence proof of whether they appear in any official sources like OFAC?

## When to prefer this

Choose this endpoint when you need a cryptographically signed, machine-verifiable proof of a sanctions or government watchlist check — particularly when OBSERVED/NOT_OBSERVED evidence needs to be stored for compliance, audit trails, or regulatory reporting. Prefer it over informal lookups when the result must be non-repudiable and carry a digital signature. Best suited for counterparty onboarding, AML/KYC workflows, and vendor due diligence where structured evidence is required.

## Known failure modes

- Missing required 'q' query parameter returns an error
- Invalid date-time format for 'from' or 'to' parameters causes a parsing error
- Entity name too ambiguous to match any source may return INCONCLUSIVE
- Source unavailability may result in partial source coverage or INCONCLUSIVE result
- Payment failure or insufficient USDC balance blocks the check

## 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 (OBSERVED, NOT_OBSERVED, or INCONCLUSIVE), a schema identifier (arakel.counterparty-government-check.v1), a per-source breakdown (e.g. OFAC result), and an Ed25519 digital signature attesting to the authenticity of the check.

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Company, organization, person, or counterparty name"
      },
      "to": {
       "type": "string",
       "format": "date-time",
       "description": "Optional UTC end; defaults to now"
      },
      "from": {
       "type": "string",
       "format": "date-time",
       "description": "Optional UTC start; defaults to one year ago"
      }
     }
    }
   },
   "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.counterparty-government-check.v1",
  "sources": [
   {
    "id": "ofac",
    "result": "NOT_OBSERVED"
   }
  ],
  "signature": {
   "alg": "Ed25519"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arakel-counterparty-government-check-7a36baea/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)
