# unprice Merchant Feed Audit

> unprice Merchant Feed Audit is a paid API for AI agents from volkov.evgeny.m2.fvds.ru, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Audits a Google Merchant Center product feed URL and checks whether listed product URLs match expected content, reporting mismatches and overall verdict

## Facts

- Endpoint: GET https://volkov.evgeny.m2.fvds.ru/pay/merchant-feed-audit
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/unprice-merchant-feed-audit-2593132c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x45ekmFvEJ4qjArJaQjWV

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 unprice-merchant-feed-audit-2593132c
```

Example prompt: Can you audit my Google Merchant feed at https://example.com/google-merchant-feed.xml and tell me if any of the product URLs have mismatches or issues — check up to 10 items?

## When to prefer this

Choose this endpoint when you need a quick, per-request audit of a Google Merchant Center product feed to detect URL mismatches without setting up your own parsing infrastructure. It is especially useful for agents managing e-commerce clients, running pre-campaign checks, or monitoring feed health on a pay-per-use basis via USDC micropayments rather than a subscription.

## Known failure modes

- Feed URL is inaccessible or returns non-XML — endpoint may return an error or empty results
- Feed contains no parseable items — itemCount and parsedItemCount return 0
- Network timeout if feed XML is very large
- Invalid or malformed feed URL parameter — may return a validation error
- Limit parameter out of range — may default or error

## How this service works

Tiny paid web services for agents. Pay per request with USDC on Base via x402, plus non-x402 Base USDC tx-hash checkouts for Merchant Feed Audit, Base USDC receipts, and recent wallet statements.

## Output

Returns a JSON object with the audited feed URL, an array of per-product results (each with URL, index, and match/mismatch verdict), total item count, parsed item count, mismatch count, and an overall verdict (e.g. 'action_needed' or 'ok') summarizing feed health.

## 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",
     "properties": {
      "url": {
       "type": "string"
      },
      "limit": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "feedUrl": "https://example.com/google-merchant-feed.xml",
  "results": [
   {
    "url": "https://example.com/product",
    "index": 0,
    "verdict": "match"
   }
  ],
  "itemCount": 5,
  "mismatchCount": 1,
  "overallVerdict": "action_needed",
  "parsedItemCount": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/unprice-merchant-feed-audit-2593132c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from volkov.evgeny.m2.fvds.ru](https://www.zero.xyz/host/volkov.evgeny.m2.fvds.ru/llms.txt)
