x402 List

x402 Protocol Service Directory

agent-reader

Data

Two cheap, agent-native utility endpoints paid per call over x402 on Base: POST /extract turns any public URL into clean, LLM-ready Markdown with metadata (title, author, published date, links, word count) for $0.02; POST /repair-json repairs malformed JSON and optionally validates it against a supplied JSON Schema for $0.005. x402 v2, USDC, settled via the Coinbase CDP facilitator.

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

listed 2026-08-03 · no on-chain settlement recorded yet

BASE URL https://x402.fenixfoundry.com WEBSITE https://fenixfoundry.com ENDPOINTS 1 NETWORK Base ASSET USDC MEMBER SINCE 2026-08-03 MONITORED SINCE 2026-08-03

ASSESSMENT

updated 2h 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
-
uptime 7d
-
uptime 30d
-
uptime 90d
-
response p95
1246ms
avg response
1246ms
total checks
1
compliance A (14/14)

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

jump to compliance checklist

price $0.02 (p72 in Data)
price (min)
$0.02
category percentile (min)
p72 in Data
endpoints / prices
1 / 1
model
flat
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
54d
registrar
GoDaddy.com, LLC
hosting
custom
domain created
2026-06-09

Identity facts, not a risk score.

traction $0 30d · 0 buyers
volume 30d
$0
buyers 30d
0
settlements 30d
0
first settlement
---
last settlement
---
top buyer share
-
trend 7d vs 30d
-
networks
eip155:8453
volume all-time
$0
settlements all-time
0
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

The service extracts data from content via POST requests.

category
data-extraction
in
body
data-extractioncontent-processing

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 /extract $0.02 Base USDC
1 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to POST /extract 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://x402.fenixfoundry.com/extract'
// 402 response (captured by monitor) · 1 payload · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0x737426d3eD53930B889b3f61774669a0FDf3BE54",
        "amount": "20000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 60
      }
    ],
    "resource": {
      "url": "https://x402.fenixfoundry.com/extract",
      "tags": [
        "web-scraping",
        "markdown",
        "extraction",
        "reader",
        "content"
      ],
      "mimeType": "application/json",
      "description": "Scrape and fetch any public web page and return clean, LLM-ready Markdown plus metadata (title, author, published date, excerpt, outbound links, word count). A web reader and content extractor with boilerplate, nav and ads removed.",
      "serviceName": "agent-reader"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "url": "https://example.com/blog/post",
              "format": "markdown"
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "url": "https://example.com/blog/post",
              "links": [
                "https://example.com/related",
                "https://other.example/ref"
              ],
              "title": "Post title",
              "author": "Jane Doe",
              "format": "markdown",
              "excerpt": "First paragraph of the article...",
              "markdown": "# Post title\n\nFirst paragraph of the article...",
              "fetchedAt": "2026-07-31T12:00:00.000Z",
              "truncated": false,
              "wordCount": 812,
              "publishedDate": "2026-05-14T09:00:00.000Z"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string",
                      "description": "Absolute http(s) URL of the page to fetch and extract."
                    },
                    "format": {
                      "enum": [
                        "markdown",
                        "json"
                      ],
                      "type": "string",
                      "default": "markdown",
                      "description": "`markdown` returns the article body as Markdown; `json` returns metadata only with the markdown omitted."
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "required": [
                    "url",
                    "format",
                    "wordCount",
                    "links"
                  ],
                  "properties": {
                    "url": {
                      "type": "string"
                    },
                    "links": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "title": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "author": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "format": {
                      "enum": [
                        "markdown",
                        "json"
                      ],
                      "type": "string"
                    },
                    "excerpt": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "markdown": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "fetchedAt": {
                      "type": "string"
                    },
                    "truncated": {
                      "type": "boolean"
                    },
                    "wordCount": {
                      "type": "integer"
                    },
                    "publishedDate": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts share the 30d window selected here. Every series is also served as JSON at /api/v1/services/agent-reader/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
08-03 · uptime 100.0% · 1088ms avg08-0308-03
30d UPTIME 100%
RESPONSE TIME
08-03 · 1088ms avg08-03 · 1088ms avg08-0308-03
AVG RESP 1122ms
PRICE (captured 402, USD)
building price history ($0.02)
SUB-SCORES (uptime + x402 compliance)
building assessment history (1 day so far)
VOLUME (on-chain settlement, USD)
no on-chain volume yet
DISTINCT BUYERS
no distinct buyers yet

COMPLIANCE

14/14 checks pass · grade A
  • 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 (9) · click to expand
TIME STATUS RESP
● OK 1393ms
● SLOW 1795ms
● OK 1007ms
● OK 1143ms
● OK 482ms
● OK 1115ms
● OK 951ms
● OK 967ms
● OK 1246ms

EMBED THIS BADGE

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

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