{
  "serviceId": "debarment-exclusion",
  "displayName": "Debarment and Exclusion Screening",
  "description": "Screen for SAM.gov exclusions: excluded parties by name, UEI, or CAGE with termination dates. POST /v1/debarment with a {name} and get matches and the lists checked as one JSON object. Deterministic per daily cache. Pay per request in USDC; no account, no API key.",
  "category": "compliance",
  "resourceUrl": "https://agent.pocket.network/v1/debarment-exclusion",
  "priceUsd": "0.005000",
  "priceVersion": 1,
  "rails": [
    {
      "id": "base",
      "network": "eip155:8453",
      "chainId": 8453,
      "tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "tokenDecimals": 6,
      "payToAddress": "0xF732ea490c5766071785a2310523f7fA2CEbB829"
    }
  ],
  "protocols": [
    "rest"
  ],
  "inputSchema": {
    "type": "object",
    "description": "A party to screen for exclusions.",
    "properties": {
      "name": {
        "type": "string",
        "description": "Name to screen."
      },
      "uei": {
        "type": "string",
        "description": "Optional UEI."
      },
      "cage": {
        "type": "string",
        "description": "Optional CAGE code."
      }
    },
    "required": [
      "name"
    ]
  },
  "outputSchema": {
    "type": "object",
    "description": "For POST /v1/debarment, a JSON object with a `checked_lists` array and any exclusion matches. The exact shape is the service's own and is not pinned here; errors return a JSON object with an `error` field, and the GET routes return their own small JSON documents."
  },
  "methods": {
    "GET /v1/health": "read",
    "GET /v1/version": "read",
    "POST /v1/debarment": "read"
  },
  "firstParty": true,
  "networks": [
    "eip155:8453"
  ],
  "serving": true,
  "page": "https://agent.pocket.network/services/debarment-exclusion",
  "descriptor": "https://agent.pocket.network/services/debarment-exclusion/descriptor.json"
}