Run transparent SEO audits on web pages. Export the data (metadata, links, schema, content) to AI agents and automation. Pay per URL, no subscription.
Price
from $0.0010
up to $0.0020 per request
Network
base
Category
ai
On-chain txns
4
Uptime
100%
Avg latency
228ms
Checks
91
Status
Healthy
Discovered from on-chain x402 payment activity. Prices shown are per-call in USDC.
Extracts a clean, token-efficient content summary as markdown from a URL. Removes ads, nav, scripts. Much more efficient than raw HTML fetches for LLMs
Extracts rich structured metadata from a URL: title, description, og/twitter tags, json-ld, images, headings, response headers, and more. Perfect for SEO research or metadata indexing & analysis
Extracts a light, token-efficient preview of a URL: title, description, and image (only)
Check if a URL is allowed to be fetched for its HTML metadata according to the website's robots.txt file. Use this super-cheap endpoint for $0.001 before making requests to our /api/v1/x402/extract/url-metadata endpoint that costs $0.01 to avoid spending extra on un-fetchable URLs
# one-time setup
npx @apihubio/cli register
npx @apihubio/cli topup 10
# call it
npx @apihubio/cli call https://minifetch.com \
-X POST \
-d '{ /* check provider docs for input */ }'
# or save it to Claude/Cursor/Codex
npx @apihubio/cli install
npx @apihubio/cli add https://minifetch.comimport { wrapFetchWithPayment } from "@x402/fetch";
import { createWalletClient, http } from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { base } from "viem/chains";
const account = privateKeyToAccount("0xYOUR_PRIVATE_KEY");
const client = createWalletClient({ account, chain: base, transport: http() });
const x402Fetch = wrapFetchWithPayment(client);
const res = await x402Fetch("https://minifetch.com", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ /* check provider docs for input */ }),
});
const data = await res.json();This is an external service not operated by APIHub. Listing data is sourced from public on-chain records and third-party indexes. Payment goes directly to the service provider via the x402 protocol. APIHub does not guarantee availability, accuracy, or quality of external services.