# sellerops-audit

> sellerops-audit is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Diagnoses why an x402 route fails to settle or remains invisible in Bazaar, returning a verdict and per-check findings with concrete fixes.

## Facts

- Endpoint: GET https://api.agentstools.dev/sellerops/audit
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sellerops-audit-25ec6565
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gLkDhe3zDziRGxkqZGF6H

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 sellerops-audit-25ec6565
```

Example prompt: Can you audit my x402 route at https://myapi.example.com/premium-data and tell me why it's not settling or showing up in Bazaar — give me a verdict and what I need to fix?

## When to prefer this

Use this endpoint when you need to diagnose why a specific x402 route is failing to settle payments or is not appearing in the Bazaar marketplace. It is purpose-built for x402 seller-side debugging and provides structured, actionable findings across multiple settlement-blocker categories. Prefer this over generic HTTP debugging tools when the issue is specific to x402 protocol compliance, USDC payment routing, or Bazaar discoverability.

## Known failure modes

- Missing or invalid 'url' query parameter returns an error
- Unreachable target URL causes timeout or connection error
- Non-x402 route may return inconclusive or misleading results
- On-chain data unavailability may cause degraded results for some checks
- Unsupported network enum value rejected with validation error

## How this service works

Diagnose why another x402 route does not settle or stays invisible in Bazaar. From the route URL: a verdict (ready / blocked / degraded) plus per-check findings each with a concrete fix, over the CDP settle-blockers (header size, WAF text, method honesty, canonical-USDC, real index membership, on-chain settle fact). Diagnostic indicators, not a guarantee.

## Output

Returns a structured verdict (ready, blocked, or degraded) plus per-check findings for each diagnostic area including header size, WAF text, method honesty, canonical USDC configuration, Bazaar index membership, and on-chain settlement facts — each finding includes a concrete recommended fix.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "The x402 route URL to diagnose"
      },
      "method": {
       "enum": [
        "GET",
        "POST"
       ],
       "type": "string",
       "description": "Route's real HTTP method (default GET)"
      },
      "network": {
       "enum": [
        "base",
        "ethereum",
        "arbitrum",
        "optimism",
        "polygon",
        "world",
        "solana"
       ],
       "type": "string",
       "description": "Advertised payment-network hint"
      },
      "resource": {
       "type": "string",
       "description": "Synonym for url"
      }
     }
    }
   },
   "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/sellerops-audit-25ec6565/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)
