x402 List

x402 Protocol Service Directory

402s.shop

Other

12 utility endpoints (QR codes, screenshots, OG images, PDF rendering, web scraping, WHOIS, YouTube transcripts, AI summarization) priced from $0.001 USDC on Base mainnet. Two payment rails: x402 (autonomous, no signup, no key) or pre-paid credits (card / 100+ cryptos via NowPayments). Hosted MCP server included for Claude Desktop / Cursor / Cline.

Pay from $0.0011 to $0.01 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

first settlement 2026-06-01 · $0 all-time · last settled 2026-06-02

BASE URL https://402s.shop WEBSITE https://402s.shop ENDPOINTS 12 NETWORK Base ASSET USDC MEMBER SINCE 2026-05-05 MONITORED SINCE 2026-05-05

ASSESSMENT

updated 40m ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 0%
uptime 24h
0%
uptime 7d
0%
uptime 30d
0%
uptime 90d
39.6%
response p95
-
avg response
-
total checks
2,731
compliance A (12/13): declares the current x402 version (2), stale (probe failing)

12 of 13 x402 conformance checks pass; failing: declares the current x402 version (2). Full checklist below.

jump to compliance checklist

price $0.0011 to $0.01 (p35 in Other)
price (min)
$0.0011
price (max)
$0.01
category percentile (min)
p35 in Other
category percentile (max)
p58 in Other
endpoints / prices
12 / 2
model
tiered
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

domain age
-
registrar
-
hosting
custom
domain created
---

Identity facts, not a risk score.

traction $0 30d · 0 buyers
volume 30d
$0
buyers 30d
0
settlements 30d
0
first settlement
2026-06-01
last settlement
2026-06-02
top buyer share
-
trend 7d vs 30d
-
networks
eip155:8453
volume all-time
$0
settlements all-time
3
median settlement 30d
$0
max settlement 30d
$0
settled via
-

Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

Provides a suite of web content processing and analysis tools including domain checking, email extraction, metadata extraction, OG image generation, PDF conversion, QR code generation, screenshot capture, text summarization, website technology detection, WHOIS lookup, word counting, and YouTube transcript retrieval.

category
web-processing-api
in
body
auth
none
web-analysiscontent-extractionseo-toolsimage-generationpdf-conversionqr-codesscreenshotsai-summarization

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
POST /api/x402/domain-check Check if a domain is available (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/extract-emails Find email addresses on a webpage (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/extract-metadata Extract Open Graph and meta tags from any URL (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/og-image Generate a 1200x630 social media OG image (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/pdf-from-url Convert any URL to PDF (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/qr-code Generate a QR code PNG from text (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/screenshot Take a screenshot of any URL (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/summarize AI-powered text or URL summarization (pay-per-call USDC, 10x normal price due to LLM cost) $0.01 Base USDC
POST /api/x402/website-tech Detect frameworks, CMS, and analytics tools (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/whois Get domain registration data (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/word-count Count words and reading time on any URL (pay-per-call USDC) $0.0011 Base USDC
POST /api/x402/youtube-transcript Get YouTube video transcript (pay-per-call USDC) $0.0011 Base USDC
12 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to POST /api/x402/domain-check returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i -X POST 'https://402s.shop/api/x402/domain-check'
// 402 response (captured by monitor) · 12 payloads · click to expand
[
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/json",
        "resource": "https://402s.shop/api/x402/extract-emails",
        "description": "Find email addresses on a webpage (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "url": "https://example.com"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "Public URL to scan for email addresses"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "image/png",
        "resource": "https://402s.shop/api/x402/qr-code",
        "description": "Generate a QR code PNG from text (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "text": "https://402s.shop"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "text"
                  ],
                  "properties": {
                    "size": {
                      "type": "integer",
                      "maximum": 1000,
                      "minimum": 100,
                      "description": "PNG size in pixels (default 256)"
                    },
                    "text": {
                      "type": "string",
                      "description": "Text or URL to encode as QR code"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "image/png",
        "resource": "https://402s.shop/api/x402/og-image",
        "description": "Generate a 1200x630 social media OG image (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "theme": "dark",
              "title": "Hello, World!",
              "subtitle": "Generated by 402s.shop"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "title"
                  ],
                  "properties": {
                    "theme": {
                      "enum": [
                        "dark",
                        "light"
                      ],
                      "type": "string",
                      "description": "Color theme: \"dark\" or \"light\""
                    },
                    "title": {
                      "type": "string",
                      "description": "OG image title (required)"
                    },
                    "subtitle": {
                      "type": "string",
                      "description": "Optional subtitle"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/json",
        "resource": "https://402s.shop/api/x402/whois",
        "description": "Get domain registration data (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "domain": "example.com"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "domain"
                  ],
                  "properties": {
                    "domain": {
                      "type": "string",
                      "description": "Domain name to query WHOIS for"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/json",
        "resource": "https://402s.shop/api/x402/youtube-transcript",
        "description": "Get YouTube video transcript (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
              "lang": "en"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "YouTube video URL"
                    },
                    "lang": {
                      "type": "string",
                      "description": "ISO 639-1 language code (optional, default \"en\")"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "image/png",
        "resource": "https://402s.shop/api/x402/screenshot",
        "description": "Take a screenshot of any URL (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "url": "https://example.com",
              "fullPage": false,
              "viewport": {
                "width": 1280,
                "height": 800
              }
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "Public URL to screenshot (http/https only; non-public IPs blocked)"
                    },
                    "fullPage": {
                      "type": "boolean",
                      "description": "Capture full scrollable page"
                    },
                    "viewport": {
                      "type": "object",
                      "properties": {
                        "width": {
                          "type": "integer",
                          "description": "320-1920"
                        },
                        "height": {
                          "type": "integer",
                          "description": "240-2160"
                        }
                      },
                      "description": "Viewport dimensions"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/pdf",
        "resource": "https://402s.shop/api/x402/pdf-from-url",
        "description": "Convert any URL to PDF (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "url": "https://example.com",
              "format": "A4"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "Public URL to render as PDF"
                    },
                    "format": {
                      "enum": [
                        "A4",
                        "Letter",
                        "Legal"
                      ],
                      "type": "string",
                      "description": "Paper size"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/json",
        "resource": "https://402s.shop/api/x402/website-tech",
        "description": "Detect frameworks, CMS, and analytics tools (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "url": "https://example.com"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "Public URL to detect frameworks/CMS/analytics on"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/json",
        "resource": "https://402s.shop/api/x402/domain-check",
        "description": "Check if a domain is available (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "domain": "example.com"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "domain"
                  ],
                  "properties": {
                    "domain": {
                      "type": "string",
                      "description": "Domain name to check availability for"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/json",
        "resource": "https://402s.shop/api/x402/summarize",
        "description": "AI-powered text or URL summarization (pay-per-call USDC, 10x normal price due to LLM cost)",
        "maxAmountRequired": "11000",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "url": "https://example.com",
              "length": "medium"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "Public URL to fetch and summarize"
                    },
                    "text": {
                      "type": "string",
                      "description": "Raw text 50-50000 chars (provide either text OR url)"
                    },
                    "length": {
                      "enum": [
                        "short",
                        "medium",
                        "long"
                      ],
                      "type": "string",
                      "description": "Summary length"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/json",
        "resource": "https://402s.shop/api/x402/extract-metadata",
        "description": "Extract Open Graph and meta tags from any URL (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "url": "https://example.com"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "Public URL to extract Open Graph and meta tags from"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  },
  {
    "error": "X-PAYMENT header required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xf0f81282976fe7c0551831cA716B5416c1873305",
        "scheme": "exact",
        "network": "base",
        "mimeType": "application/json",
        "resource": "https://402s.shop/api/x402/word-count",
        "description": "Count words and reading time on any URL (pay-per-call USDC)",
        "maxAmountRequired": "1100",
        "maxTimeoutSeconds": 300
      }
    ],
    "extensions": {
      "bazaar": {
        "info": {
          "type": "http",
          "input": {
            "body": {
              "url": "https://example.com"
            }
          },
          "method": "POST",
          "bodyType": "json"
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "properties": {
            "input": {
              "type": "object",
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "Public URL to fetch and count words"
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "enum": [
                    "http"
                  ],
                  "type": "string"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        }
      }
    },
    "x402Version": 1
  }
]

OVER TIME

All charts share the 90d window selected here. Every series is also served as JSON at /api/v1/services/402s-shop/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

UPTIME
06-10 · uptime 42.2% · 80ms avg06-11 · uptime 0.0%06-12 · uptime 0.0%06-13 · uptime 0.0%06-14 · uptime 0.0%06-15 · uptime 0.0%06-16 · uptime 0.0%06-17 · uptime 0.0%06-18 · uptime 0.0%06-19 · uptime 0.0%06-20 · uptime 0.0%06-21 · uptime 0.0%06-22 · uptime 0.0%06-23 · uptime 0.0%06-24 · uptime 0.0%06-25 · uptime 0.0%06-26 · uptime 0.0%06-27 · uptime 0.0%06-28 · uptime 0.0%06-29 · uptime 0.0%06-30 · uptime 0.0%07-01 · uptime 0.0%07-02 · uptime 0.0%07-03 · uptime 0.0%07-04 · uptime 0.0%07-05 · uptime 0.0%07-06 · uptime 0.0%07-07 · uptime 0.0%07-08 · uptime 0.0%07-09 · uptime 0.0%07-10 · uptime 0.0%07-11 · uptime 0.0%07-12 · uptime 0.0%07-13 · uptime 0.0%07-14 · uptime 0.0%07-15 · uptime 0.0%07-16 · uptime 0.0%07-17 · uptime 0.0%07-18 · uptime 0.0%07-19 · uptime 0.0%07-20 · uptime 0.0%07-21 · uptime 0.0%07-22 · uptime 0.0%07-23 · uptime 0.0%07-24 · uptime 0.0%07-25 · uptime 0.0%07-26 · uptime 0.0%07-27 · uptime 0.0%07-28 · uptime 0.0%07-29 · uptime 0.0%07-30 · uptime 0.0%07-31 · uptime 0.0%08-01 · uptime 0.0%08-02 · uptime 0.0%08-03 · uptime 0.0%05-06 · uptime 100.0% · 77ms avg05-07 · uptime 100.0% · 80ms avg05-08 · uptime 100.0% · 60ms avg05-09 · uptime 100.0% · 82ms avg05-10 · uptime 100.0% · 72ms avg05-11 · uptime 100.0% · 60ms avg05-12 · uptime 100.0% · 56ms avg05-13 · uptime 100.0% · 64ms avg05-14 · uptime 100.0% · 72ms avg05-15 · uptime 100.0% · 71ms avg05-16 · uptime 100.0% · 63ms avg05-17 · uptime 100.0% · 68ms avg05-18 · uptime 100.0% · 61ms avg05-19 · uptime 100.0% · 43ms avg05-20 · uptime 100.0% · 44ms avg05-21 · uptime 100.0% · 44ms avg05-22 · uptime 100.0% · 44ms avg05-23 · uptime 100.0% · 43ms avg05-24 · uptime 100.0% · 46ms avg05-25 · uptime 100.0% · 42ms avg05-26 · uptime 100.0% · 45ms avg05-27 · uptime 100.0% · 54ms avg05-28 · uptime 100.0% · 44ms avg05-29 · uptime 100.0% · 48ms avg05-30 · uptime 100.0% · 63ms avg05-31 · uptime 100.0% · 56ms avg06-01 · uptime 100.0% · 65ms avg06-02 · uptime 100.0% · 56ms avg06-03 · uptime 100.0% · 72ms avg06-04 · uptime 100.0% · 97ms avg06-05 · uptime 100.0% · 71ms avg06-06 · uptime 100.0% · 71ms avg06-07 · uptime 100.0% · 78ms avg06-08 · uptime 100.0% · 82ms avg06-09 · uptime 100.0% · 116ms avg06-10 · uptime 42.2% · 80ms avg06-11 · uptime 0.0%06-12 · uptime 0.0%06-13 · uptime 0.0%06-14 · uptime 0.0%06-15 · uptime 0.0%06-16 · uptime 0.0%06-17 · uptime 0.0%06-18 · uptime 0.0%06-19 · uptime 0.0%06-20 · uptime 0.0%06-21 · uptime 0.0%06-22 · uptime 0.0%06-23 · uptime 0.0%06-24 · uptime 0.0%06-25 · uptime 0.0%06-26 · uptime 0.0%06-27 · uptime 0.0%06-28 · uptime 0.0%06-29 · uptime 0.0%06-30 · uptime 0.0%07-01 · uptime 0.0%07-02 · uptime 0.0%07-03 · uptime 0.0%07-04 · uptime 0.0%07-05 · uptime 0.0%07-06 · uptime 0.0%07-07 · uptime 0.0%07-08 · uptime 0.0%07-09 · uptime 0.0%07-10 · uptime 0.0%07-11 · uptime 0.0%07-12 · uptime 0.0%07-13 · uptime 0.0%07-14 · uptime 0.0%07-15 · uptime 0.0%07-16 · uptime 0.0%07-17 · uptime 0.0%07-18 · uptime 0.0%07-19 · uptime 0.0%07-20 · uptime 0.0%07-21 · uptime 0.0%07-22 · uptime 0.0%07-23 · uptime 0.0%07-24 · uptime 0.0%07-25 · uptime 0.0%07-26 · uptime 0.0%07-27 · uptime 0.0%07-28 · uptime 0.0%07-29 · uptime 0.0%07-30 · uptime 0.0%07-31 · uptime 0.0%08-01 · uptime 0.0%08-02 · uptime 0.0%08-03 · uptime 0.0%05-0608-03
90d UPTIME 39.6%
RESPONSE TIME
05-06 · 77ms avg05-06 · 77ms avg05-07 · 80ms avg05-07 · 80ms avg05-08 · 60ms avg05-08 · 60ms avg05-09 · 82ms avg05-09 · 82ms avg05-10 · 72ms avg05-10 · 72ms avg05-11 · 60ms avg05-11 · 60ms avg05-12 · 56ms avg05-12 · 56ms avg05-13 · 64ms avg05-13 · 64ms avg05-14 · 72ms avg05-14 · 72ms avg05-15 · 71ms avg05-15 · 71ms avg05-16 · 63ms avg05-16 · 63ms avg05-17 · 68ms avg05-17 · 68ms avg05-18 · 61ms avg05-18 · 61ms avg05-19 · 43ms avg05-19 · 43ms avg05-20 · 44ms avg05-20 · 44ms avg05-21 · 44ms avg05-21 · 44ms avg05-22 · 44ms avg05-22 · 44ms avg05-23 · 43ms avg05-23 · 43ms avg05-24 · 46ms avg05-24 · 46ms avg05-25 · 42ms avg05-25 · 42ms avg05-26 · 45ms avg05-26 · 45ms avg05-27 · 54ms avg05-27 · 54ms avg05-28 · 44ms avg05-28 · 44ms avg05-29 · 48ms avg05-29 · 48ms avg05-30 · 63ms avg05-30 · 63ms avg05-31 · 56ms avg05-31 · 56ms avg06-01 · 65ms avg06-01 · 65ms avg06-02 · 56ms avg06-02 · 56ms avg06-03 · 72ms avg06-03 · 72ms avg06-04 · 97ms avg06-04 · 97ms avg06-05 · 71ms avg06-05 · 71ms avg06-06 · 71ms avg06-06 · 71ms avg06-07 · 78ms avg06-07 · 78ms avg06-08 · 82ms avg06-08 · 82ms avg06-09 · 116ms avg06-09 · 116ms avg06-10 · 80ms avg06-10 · 80ms avg06-11 · 0ms avg06-11 · 0ms avg06-12 · 0ms avg06-12 · 0ms avg06-13 · 0ms avg06-13 · 0ms avg06-14 · 0ms avg06-14 · 0ms avg06-15 · 0ms avg06-15 · 0ms avg06-16 · 0ms avg06-16 · 0ms avg06-17 · 0ms avg06-17 · 0ms avg06-18 · 0ms avg06-18 · 0ms avg06-19 · 0ms avg06-19 · 0ms avg06-20 · 0ms avg06-20 · 0ms avg06-21 · 0ms avg06-21 · 0ms avg06-22 · 0ms avg06-22 · 0ms avg06-23 · 0ms avg06-23 · 0ms avg06-24 · 0ms avg06-24 · 0ms avg06-25 · 0ms avg06-25 · 0ms avg06-26 · 0ms avg06-26 · 0ms avg06-27 · 0ms avg06-27 · 0ms avg06-28 · 0ms avg06-28 · 0ms avg06-29 · 0ms avg06-29 · 0ms avg06-30 · 0ms avg06-30 · 0ms avg07-01 · 0ms avg07-01 · 0ms avg07-02 · 0ms avg07-02 · 0ms avg07-03 · 0ms avg07-03 · 0ms avg07-04 · 0ms avg07-04 · 0ms avg07-05 · 0ms avg07-05 · 0ms avg07-06 · 0ms avg07-06 · 0ms avg07-07 · 0ms avg07-07 · 0ms avg07-08 · 0ms avg07-08 · 0ms avg07-09 · 0ms avg07-09 · 0ms avg07-10 · 0ms avg07-10 · 0ms avg07-11 · 0ms avg07-11 · 0ms avg07-12 · 0ms avg07-12 · 0ms avg07-13 · 0ms avg07-13 · 0ms avg07-14 · 0ms avg07-14 · 0ms avg07-15 · 0ms avg07-15 · 0ms avg07-16 · 0ms avg07-16 · 0ms avg07-17 · 0ms avg07-17 · 0ms avg07-18 · 0ms avg07-18 · 0ms avg07-19 · 0ms avg07-19 · 0ms avg07-20 · 0ms avg07-20 · 0ms avg07-21 · 0ms avg07-21 · 0ms avg07-22 · 0ms avg07-22 · 0ms avg07-23 · 0ms avg07-23 · 0ms avg07-24 · 0ms avg07-24 · 0ms avg07-25 · 0ms avg07-25 · 0ms avg07-26 · 0ms avg07-26 · 0ms avg07-27 · 0ms avg07-27 · 0ms avg07-28 · 0ms avg07-28 · 0ms avg07-29 · 0ms avg07-29 · 0ms avg07-30 · 0ms avg07-30 · 0ms avg07-31 · 0ms avg07-31 · 0ms avg08-01 · 0ms avg08-01 · 0ms avg08-02 · 0ms avg08-02 · 0ms avg08-03 · 0ms avg08-03 · 0ms avg05-0608-03
AVG RESP ---
PRICE (captured 402, USD)
06-10 · $0.001108-03 · $0.0011$0.001106-1008-03

Median across 12 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
07-13 uptime: 0.0% compliance: 100% checks07-14 uptime: 0.0% compliance: 100% checks07-15 uptime: 0.0% compliance: 100% checks07-16 uptime: 0.0% compliance: 100% checks07-17 uptime: 0.0% compliance: 100% checks07-18 uptime: 0.0% compliance: 100% checks07-19 uptime: 0.0% compliance: 100% checks07-20 uptime: 0.0% compliance: 100% checks07-21 uptime: 0.0% compliance: 100% checks07-22 uptime: 0.0% compliance: 100% checks07-23 uptime: 0.0% compliance: 100% checks07-24 uptime: 0.0% compliance: 100% checks07-25 uptime: 0.0% compliance: 100% checks07-26 uptime: 0.0% compliance: 100% checks07-27 uptime: 0.0% compliance: 100% checks07-28 uptime: 0.0% compliance: 92% checks07-29 uptime: 0.0% compliance: 92% checks07-30 uptime: 0.0% compliance: 92% checks07-31 uptime: 0.0% compliance: 92% checks08-01 uptime: 0.0% compliance: 92% checks08-02 uptime: 0.0% compliance: 92% checks08-03 uptime: 0.0% compliance: 92% checksuptimecompliance07-1308-03
VOLUME (on-chain settlement, USD)
no on-chain volume yet
DISTINCT BUYERS
06-01 · 1 buyer06-02 · 1 buyerpeak 1 buyer06-0106-02

COMPLIANCE

12/13 checks pass · grade A · failing: declares the current x402 version (2) · stale (probe failing)
  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS
  • declares the current x402 version (2)
  • EIP-712 domain parameters present on every EVM entry
  • x402 v2 envelope delivered in the payment-required header

SITE PILLARS

  • homepage reachable
  • openapi doc
  • pricing page
  • llms.txt
  • robots.txt
  • terms page
recent checks (18) · click to expand
TIME STATUS RESP
○ DOWN 2500ms
○ DOWN 2500ms
○ DOWN 2500ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2500ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2501ms
○ DOWN 2500ms
○ DOWN 2501ms
○ DOWN 2500ms

EMBED THIS BADGE

Show that 402s.shop is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

402s.shop listed on x402-list
status
402s.shop uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/402s-shop?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/402s-shop.svg" alt="402s.shop listed on x402-list" height="28">
</a>
// Markdown
[![402s.shop on x402-list](https://x402-list.com/badge/402s-shop.svg)](https://x402-list.com/services/402s-shop?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/402s-shop?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/402s-shop.svg?data=uptime" alt="402s.shop uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]