# Sivut x402 Seller Score

> Sivut x402 Seller Score is a paid API for AI agents from pay.sivut.co, paid per call via x402, $0.03/call, status down (last checked 2026-09-15).

Returns a trust/reputation score for an x402 seller, identified by domain, resource URL, or pay_to address, covering revenue proof, buyer breadth, metadata quality, and route reliability.

## Facts

- Endpoint: GET https://pay.sivut.co/api/public-data/x402-seller-score
- Price: $0.03/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sivut-x402-seller-score-827f3426
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vAUbNnNLMSImuMErqridJ

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 sivut-x402-seller-score-827f3426
```

Example prompt: What's the seller score for pay.sivut.co on the x402 network — can you look it up by domain and tell me the total score, rating, and what's driving it?

## When to prefer this

Use this endpoint when you need to assess the trustworthiness or reputation of an x402 seller before initiating a micropayment, or when building a directory or marketplace that surfaces x402 seller quality signals. It is the only known public scoring API specifically designed for the x402 protocol seller ecosystem.

## Known failure modes

- Missing required query parameter (domain, resource, or pay_to not provided) — likely 400 Bad Request
- Unknown domain or pay_to address with no scoring data — empty or null score response
- Network timeout or service unavailability — 5xx error
- Payment failure for the $0.03 USDC x402 fee — 402 Payment Required

## How this service works

Machine-payable x402 endpoints for public SEC crypto filing radar data, page markdown, and public x402 seller intelligence paid in USDC on Base or Solana.

## Output

Returns a JSON object with a total score (0-100), a string rating, and component scores (buyerBreadth, revenueProof, metadataQuality, routeReliability), along with the target queried, product name, timestamp of the check, and an array of candidate records.

## 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",
     "anyOf": [
      {
       "required": [
        "domain"
       ]
      },
      {
       "required": [
        "resource"
       ]
      },
      {
       "required": [
        "pay_to"
       ]
      }
     ],
     "properties": {
      "domain": {
       "type": "string",
       "maxLength": 253
      },
      "pay_to": {
       "type": "string",
       "maxLength": 120
      },
      "resource": {
       "type": "string",
       "maxLength": 2048
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "checkedAt",
      "product",
      "target",
      "score",
      "candidates"
     ],
     "properties": {
      "score": {
       "type": "object",
       "required": [
        "total",
        "rating",
        "components"
       ],
       "properties": {
        "total": {
         "type": "integer",
         "maximum": 100,
         "minimum": 0
        },
        "rating": {
         "type": "string"
        },
        "components": {
         "type": "object",
         "properties": {
          "buyerBreadth": {
           "type": "number"
          },
          "revenueProof": {
           "type": "number"
          },
          "metadataQuality": {
           "type": "number"
          },
          "routeReliability": {
           "type": "number"
          }
         }
        }
       }
      },
      "target": {
       "type": "object",
       "anyOf": [
        {
         "required": [
          "domain"
         ]
        },
        {
         "required": [
          "resource"
         ]
        },
        {
         "required": [
          "pay_to"
         ]
        }
       ],
       "properties": {
        "domain": {
         "type": "string",
         "maxLength": 253
        },
        "pay_to": {
         "type": "string",
         "maxLength": 120
        },
        "resource": {
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": {
   "total": 72,
   "rating": "developing",
   "components": {
    "buyerBreadth": 12,
    "revenueProof": 18,
    "metadataQuality": 22,
    "routeReliability": 20
   }
  },
  "target": {
   "domain": "agentic.market"
  },
  "product": "public-x402-seller-score",
  "checkedAt": "2026-06-09T00:00:00.000Z",
  "candidates": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sivut-x402-seller-score-827f3426/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pay.sivut.co](https://www.zero.xyz/host/pay.sivut.co/llms.txt)
