x402 List

x402 Protocol Service Directory

Skim

Content PAYMENT-READY

payment-ready until 2026-08-20

Skim is the x402-native clean reader for AI agents: send a URL, get back agent-ready markdown plus structured metadata in milliseconds. Pay per call in USDC over HTTP 402 - no signup, no API keys. In a production benchmark - 15 real paid calls to skim402.com over the public internet, each verifiable on-chain - Skim ran 2.3x faster than Firecrawl at the median. Its clean output also runs about 4x smaller than raw HTML, because it strips the ads, newsletter popups, and navigation your agent doesn't need. Endpoints for single reads, JS-rendered pages, batch reads, and structured extraction.

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

first settlement 2026-05-17 · $14.39 all-time · settled via coinbase

BASE URL https://skim402.com WEBSITE https://skim402.com ENDPOINTS 4 NETWORK Base ASSET USDC MEMBER SINCE 2026-06-12 MONITORED SINCE 2026-06-12

ASSESSMENT

updated 3h ago

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

reliability 100%
uptime 24h
100%
uptime 7d
100%
uptime 30d
100%
uptime 90d
100%
response p95
501ms
avg response
242ms
total checks
2,738

Measured on the unpaid 402 handshake, not the paid call. A service can 402 correctly and still fail after payment.

compliance A (14/14)

14 of 14 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.002 to $0.02 (p30 in Content)
price (min)
$0.002
price (max)
$0.02
category percentile (min)
p30 in Content
category percentile (max)
p53 in Content
endpoints / prices
4 / 4
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
85d
registrar
Cloudflare, Inc.
hosting
custom
domain created
2026-05-17

Identity facts, not a risk score.

traction $6.237 30d · 21 buyers
volume 30d
$6.237
buyers 30d
21
settlements 30d
2,167
first settlement
2026-05-17
last settlement
2026-08-13
top buyer share
57% of 30d volume
trend 7d vs 30d
0.28x the 30d daily rate
networks
eip155:8453
volume all-time
$14.39
settlements all-time
2,986
median settlement 30d
$0.002
max settlement 30d
$0.35
settled via
coinbase ($6.24, 2,167 tx)

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

Skim is a web content extraction service that turns URLs into clean Markdown and structured metadata for AI agents.

category
content-extraction
in
query params and body
out
and markdown
auth
none
content-extractionweb-scrapingmarkdown-conversionmetadata-extraction

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 402 CHANNEL
POST /api/v2/extract $0.015 Base USDC header
GET /api/v2/read $0.002 Base USDC header
POST /api/v2/read/batch $0.02 Base USDC header
GET /api/v2/read/js $0.005 Base USDC header
4 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to GET /api/v2/read returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i 'https://skim402.com/api/v2/read'
// 402 response (captured by monitor) · 4 payloads · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x63AE98f3363B346a94Fcc1CBcB621F1C2B1Fcddc",
        "amount": "20000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://skim402.com/api/v2/read/batch",
      "mimeType": "application/json",
      "description": "Skim: batch reader — up to 10 URLs to agent-ready markdown in one paid call."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "POST",
            "queryParams": {
              "urls": [
                "https://example.com/article-1",
                "https://example.com/article-2"
              ]
            }
          },
          "output": {
            "type": "json",
            "example": {
              "results": [
                {
                  "ok": true,
                  "url": "https://example.com/article-1",
                  "data": {
                    "url": "https://example.com/article-1",
                    "mode": "basic",
                    "text": "Article 1\n\n...",
                    "finalUrl": "https://example.com/article-1",
                    "markdown": "# Article 1\n\n...",
                    "metadata": {
                      "title": "Article 1"
                    }
                  },
                  "error": null,
                  "cacheHit": false
                }
              ],
              "fetchedAt": "2025-01-01T00:00:00Z"
            }
          }
        },
        "schema": {
          "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": [
                    "POST"
                  ],
                  "type": "string"
                },
                "queryParams": {
                  "type": "object",
                  "required": [
                    "urls"
                  ],
                  "properties": {
                    "urls": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "maxItems": 10,
                      "minItems": 1,
                      "description": "Up to 10 URLs to read in parallel. Returns per-URL results; partial-success batches still settle, all-fail batches return 422 (no payment settled)."
                    }
                  }
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x63AE98f3363B346a94Fcc1CBcB621F1C2B1Fcddc",
        "amount": "5000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://skim402.com/api/v2/read/js",
      "mimeType": "application/json",
      "description": "Skim: JS-rendered reader — full headless browser render for SPAs and JS-gated pages."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "queryParams": {
              "url": "https://example.com/spa-page"
            }
          },
          "output": {
            "type": "json",
            "example": {
              "url": "https://example.com/spa-page",
              "mode": "js",
              "text": "SPA Article\n\nMarkdown extracted after the page's JavaScript hydrated the article body...",
              "finalUrl": "https://example.com/spa-page",
              "markdown": "# SPA Article\n\nMarkdown extracted after the page's JavaScript hydrated the article body.",
              "metadata": {
                "title": "SPA Article",
                "siteName": "Example SPA"
              }
            }
          }
        },
        "schema": {
          "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",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "The URL of a JavaScript-rendered page (SPA, JS-gated, lazy-loaded). The server performs a full headless browser render before extracting the article."
                    }
                  }
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x63AE98f3363B346a94Fcc1CBcB621F1C2B1Fcddc",
        "amount": "2000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://skim402.com/api/v2/read",
      "mimeType": "application/json",
      "description": "Skim: clean reader — URL to agent-ready markdown + structured metadata."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "GET",
            "queryParams": {
              "url": "https://example.com/article"
            }
          },
          "output": {
            "type": "json",
            "example": {
              "url": "https://example.com/article",
              "mode": "basic",
              "text": "Example Article\n\nClean markdown extracted from the page...",
              "finalUrl": "https://example.com/article",
              "markdown": "# Example Article\n\nClean markdown extracted from the page, with headings, lists, and links preserved.",
              "metadata": {
                "lang": "en",
                "title": "Example Article",
                "siteName": "Example Site",
                "publishedAt": "2025-01-01T00:00:00Z"
              }
            }
          }
        },
        "schema": {
          "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",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "The URL of the web page to clean and convert to markdown."
                    }
                  }
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x63AE98f3363B346a94Fcc1CBcB621F1C2B1Fcddc",
        "amount": "15000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://skim402.com/api/v2/extract",
      "mimeType": "application/json",
      "description": "Skim: structured extraction — URL + JSON Schema to schema-conforming JSON via LLM."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "type": "http",
            "method": "POST",
            "queryParams": {
              "url": "https://example.com/product-page",
              "schema": {
                "type": "object",
                "required": [
                  "name",
                  "price"
                ],
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "price": {
                    "type": "number"
                  }
                }
              }
            }
          },
          "output": {
            "type": "json",
            "example": {
              "data": {
                "name": "Example Product",
                "price": 29.99
              },
              "source": {
                "url": "https://example.com/product-page",
                "finalUrl": "https://example.com/product-page",
                "markdownBytes": 1234,
                "readerCacheHit": false
              }
            }
          }
        },
        "schema": {
          "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": [
                    "POST"
                  ],
                  "type": "string"
                },
                "queryParams": {
                  "type": "object",
                  "required": [
                    "url",
                    "schema"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "The URL to extract structured data from."
                    },
                    "schema": {
                      "type": "object",
                      "description": "JSON Schema describing the desired output shape. The server returns JSON conforming to this schema, extracted from the page via LLM."
                    },
                    "instructions": {
                      "type": "string",
                      "description": "Optional natural-language guidance for the extractor (e.g. 'prefer USD; ignore sale crossouts')."
                    }
                  }
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts use the 30d selector; each series spans only the dates it has data for. Every series is also served as JSON at /api/v1/services/skim/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
07-15 · uptime 100.0% · 154ms avg07-16 · uptime 100.0% · 203ms avg07-17 · uptime 100.0% · 151ms avg07-18 · uptime 100.0% · 176ms avg07-19 · uptime 100.0% · 181ms avg07-20 · uptime 100.0% · 183ms avg07-21 · uptime 100.0% · 226ms avg07-22 · uptime 100.0% · 162ms avg07-23 · uptime 100.0% · 156ms avg07-24 · uptime 100.0% · 185ms avg07-25 · uptime 100.0% · 196ms avg07-26 · uptime 100.0% · 227ms avg07-27 · uptime 100.0% · 215ms avg07-28 · uptime 100.0% · 252ms avg07-29 · uptime 100.0% · 210ms avg07-30 · uptime 98.9% · 232ms avg07-31 · uptime 100.0% · 287ms avg08-01 · uptime 100.0% · 248ms avg08-02 · uptime 100.0% · 229ms avg08-03 · uptime 100.0% · 247ms avg08-04 · uptime 100.0% · 282ms avg08-05 · uptime 100.0% · 385ms avg08-06 · uptime 100.0% · 389ms avg08-07 · uptime 100.0% · 356ms avg08-08 · uptime 100.0% · 388ms avg08-09 · uptime 100.0% · 204ms avg08-10 · uptime 100.0% · 371ms avg08-11 · uptime 100.0% · 342ms avg08-12 · uptime 100.0% · 186ms avg08-13 · uptime 100.0% · 167ms avg07-1508-13
30d UPTIME 100%
RESPONSE TIME
07-15 · 154ms avg07-15 · 154ms avg07-16 · 203ms avg07-16 · 203ms avg07-17 · 151ms avg07-17 · 151ms avg07-18 · 176ms avg07-18 · 176ms avg07-19 · 181ms avg07-19 · 181ms avg07-20 · 183ms avg07-20 · 183ms avg07-21 · 226ms avg07-21 · 226ms avg07-22 · 162ms avg07-22 · 162ms avg07-23 · 156ms avg07-23 · 156ms avg07-24 · 185ms avg07-24 · 185ms avg07-25 · 196ms avg07-25 · 196ms avg07-26 · 227ms avg07-26 · 227ms avg07-27 · 215ms avg07-27 · 215ms avg07-28 · 252ms avg07-28 · 252ms avg07-29 · 210ms avg07-29 · 210ms avg07-30 · 232ms avg07-30 · 232ms avg07-31 · 287ms avg07-31 · 287ms avg08-01 · 248ms avg08-01 · 248ms avg08-02 · 229ms avg08-02 · 229ms avg08-03 · 247ms avg08-03 · 247ms avg08-04 · 282ms avg08-04 · 282ms avg08-05 · 385ms avg08-05 · 385ms avg08-06 · 389ms avg08-06 · 389ms avg08-07 · 356ms avg08-07 · 356ms avg08-08 · 388ms avg08-08 · 388ms avg08-09 · 204ms avg08-09 · 204ms avg08-10 · 371ms avg08-10 · 371ms avg08-11 · 342ms avg08-11 · 342ms avg08-12 · 186ms avg08-12 · 186ms avg08-13 · 167ms avg08-13 · 167ms avg07-1508-13
AVG RESP 241ms
PRICE (captured 402, USD)
07-14 · $0.0108-13 · $0.01$0.0107-1408-13

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

SUB-SCORES (uptime + x402 compliance)
07-15 uptime: 100.0% compliance: 92% checks07-16 uptime: 100.0% compliance: 92% checks07-17 uptime: 100.0% compliance: 100% checks07-18 uptime: 100.0% compliance: 100% checks07-19 uptime: 100.0% compliance: 100% checks07-20 uptime: 100.0% compliance: 100% checks07-21 uptime: 100.0% compliance: 100% checks07-22 uptime: 100.0% compliance: 100% checks07-23 uptime: 100.0% compliance: 100% checks07-24 uptime: 100.0% compliance: 100% checks07-25 uptime: 100.0% compliance: 100% checks07-26 uptime: 100.0% compliance: 100% checks07-27 uptime: 100.0% compliance: 100% checks07-28 uptime: 100.0% compliance: 100% checks07-29 uptime: 100.0% compliance: 100% checks07-30 uptime: 100.0% compliance: 100% checks07-31 uptime: 100.0% compliance: 100% checks08-01 uptime: 100.0% compliance: 100% checks08-02 uptime: 100.0% compliance: 100% checks08-03 uptime: 100.0% compliance: 100% checks08-04 uptime: 100.0% compliance: 100% checks08-05 uptime: 100.0% compliance: 100% checks08-06 uptime: 100.0% compliance: 100% checks08-07 uptime: 100.0% compliance: 100% checks08-08 uptime: 100.0% compliance: 100% checks08-09 uptime: 100.0% compliance: 100% checks08-10 uptime: 100.0% compliance: 100% checks08-11 uptime: 100.0% compliance: 100% checks08-12 uptime: 100.0% compliance: 100% checks08-13 uptime: 100.0% compliance: 100% checksuptimecompliance07-1508-13

checklist grew 11->14 on 2026-07-28; a step here is a metric change, not a regression

PILLARS OVER TIME (measured)

Measured site and economics pillars from the assessment history, so the latest value shown elsewhere on this page reads as a point on a trend rather than a permanent state.

VOLUME (on-chain settlement, USD)
07-15 · $107-16 · $0.0307-17 · $0.0107-18 · $0.0407-19 · $207-20 · $107-21 · $0.1307-22 · $0.0407-23 · $0.0307-24 · $0.0407-25 · $0.0407-26 · $0.0407-27 · $0.0407-28 · $0.0307-29 · $0.0307-30 · $0.1707-31 · $0.0308-01 · $0.0308-02 · $0.1008-03 · $0.1208-04 · $0.1908-05 · $0.0308-06 · $0.0308-07 · $0.0308-08 · $0.0308-09 · $0.0308-10 · $0.0408-11 · $0.1708-12 · $0.0608-13 · $0.07peak $207-1508-13
DISTINCT BUYERS
07-15 · 3 buyers07-16 · 5 buyers07-17 · 2 buyers07-18 · 5 buyers07-19 · 3 buyers07-20 · 4 buyers07-21 · 5 buyers07-22 · 3 buyers07-23 · 2 buyers07-24 · 3 buyers07-25 · 3 buyers07-26 · 3 buyers07-27 · 4 buyers07-28 · 2 buyers07-29 · 2 buyers07-30 · 6 buyers07-31 · 2 buyers08-01 · 2 buyers08-02 · 4 buyers08-03 · 6 buyers08-04 · 5 buyers08-05 · 1 buyer08-06 · 2 buyers08-07 · 3 buyers08-08 · 2 buyers08-09 · 3 buyers08-10 · 3 buyers08-11 · 4 buyers08-12 · 6 buyers08-13 · 5 buyerspeak 6 buyers07-1508-13

COMPLIANCE

14/14 checks pass · grade A

last 402 captured 2026-06-16 · last up 2026-08-13

  • 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) live · click to expand
TIME STATUS RESP CAUSE
● OK 119ms
● OK 162ms
● OK 73ms
● OK 153ms
● OK 164ms
● OK 191ms
● OK 191ms
● OK 199ms
● OK 177ms
● OK 297ms
● OK 263ms
● OK 232ms
● OK 248ms
● OK 205ms
● OK 175ms
● OK 136ms
● OK 130ms
● OK 169ms

EMBED THIS BADGE

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

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

Earn the verified tier: x402list pays a real call to this endpoint and, if it delivers, the service is delivery-verified. The fee covers the cost of the probe, not the badge; there is no refund if the call does not deliver. Agent and API only, no in-browser signing. See /api.

[ verify this service ($0.25) ]

To request delisting, email info@x402-list.com or update your listing at /services/skim/update.