# NFT Operator Approval Auditor

> NFT Operator Approval Auditor is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Audits all live NFT operator approvals (ApprovalForAll) for a wallet, flags risky/scam operators, and returns a ranked revoke plan with ready-to-use setApprovalForAll calldata and a 0-100 risk score.

## Facts

- Endpoint: GET https://api.agentstools.dev/approvals/nft
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nft-operator-approval-auditor-ec9f463b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XRFcOqaWRuv7vU-rVVuwp

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 nft-operator-approval-auditor-ec9f463b
```

Example prompt: Can you audit my wallet 0xAbc123...def on Ethereum for any live NFT operator approvals, flag any scam or stale ones, and give me a revoke plan with the calldata I need to remove the risky ones?

## When to prefer this

Use this endpoint when you need a comprehensive, on-chain-verified audit of a wallet's NFT operator approvals with actionable revoke calldata — not just a static list. Prefer it over generic block explorers when you need scam flagging, stale detection, risk scoring, and ready-to-submit transaction data in one call across Base, Ethereum, Arbitrum, Optimism, and Polygon.

## Known failure modes

- Invalid or non-checksummed wallet address returns a 400 error
- Unsupported network name returns validation error
- Rate limiting or upstream RPC node errors may cause 503 or timeout
- Wallet with no NFT approvals returns empty approval list with risk score 0
- limit exceeds cap of 40 and is silently clamped or rejected

## How this service works

Standing-state audit of a wallet's live NFT operator approvals. Indexes every ApprovalForAll the address granted, filters to operators still live on-chain via isApprovedForAll, flags scam-listed, stale and canonical operators, and returns a ranked revoke plan with ready setApprovalForAll calldata plus a 0-100 risk and allow, warn or block verdict. Risk indicators, not advice.

## Output

Returns a list of all live NFT operator approvals (ApprovalForAll) for the wallet, each labeled as scam, stale, or canonical, along with a 0-100 aggregate risk score, an allow/warn/block verdict, a ranked revoke plan ordered by priority, and ready-to-submit setApprovalForAll calldata for each operator to be revoked.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max distinct operators to check (default/cap 40)"
      },
      "address": {
       "type": "string",
       "description": "0x wallet address to audit (the owner)"
      },
      "network": {
       "enum": [
        "base",
        "ethereum",
        "arbitrum",
        "optimism",
        "polygon"
       ],
       "type": "string",
       "description": "EVM network to audit (default base)"
      },
      "include_revoke_plan": {
       "type": "boolean",
       "description": "Include the ordered revoke plan (default true)"
      }
     }
    }
   },
   "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/nft-operator-approval-auditor-ec9f463b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
