Agent402 / tools / sitemap

Sitemap reader

$0.003 per call · POST /api/sitemap · USDC via x402

Fetch and parse a sitemap.xml (or sitemap index): returns up to 500 URLs with lastmod, or the child sitemaps of an index.

Input

FieldTypeDescription
url *stringSitemap URL (xml)

Example output

{
  "type": "urlset",
  "count": 42,
  "urls": [
    {
      "loc": "https://example.com/",
      "lastmod": "2026-06-01"
    }
  ]
}

Try it — see the 402 challenge (free)

curl -i -X POST https://agent402.tools/api/sitemap \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com/sitemap.xml"}'

The response is HTTP 402 Payment Required with exact payment requirements. Any x402 v2 client pays automatically and retries:

Paid call (JavaScript agent)

import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";

const client = new x402Client();
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);

const res = await payFetch("https://agent402.tools/api/sitemap", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    "url": "https://example.com/sitemap.xml"
  }),
});

Related tools

DNS lookup

$0.001 · GET /api/dns

DNS lookup for a domain. Supported record types: A, AAAA, MX, TXT, NS, CNAME.…

HTTP check

$0.003 · POST /api/http-check

Check any public URL: status code, latency, final URL after redirects, and response headers. The uptime primit…

TLS certificate

$0.003 · POST /api/tls-cert

Inspect the TLS certificate of any public host: subject, issuer, validity window, days remaining, SANs, and SH…