$0.002
per call · USD Coin on Base
Extracts all fields used for a page's share previews: the lightweight cards that represent the page on social platforms, chat apps, and AI. Supports GET & POST
Endpoint
POST https://minifetch.com/api/v1/x402/extract/url-preview2
Calls / 30d
1
Unique payers / 30d
Sep 10
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://minifetch.com/api/v1/x402/extract/url-preview", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"url": "https://github.com"
}),
});
const data = await res.json();curl -X POST \
"https://minifetch.com/api/v1/x402/extract/url-preview" \
-H "Content-Type: application/json" \
-d '{"url":"https://github.com"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"results": [
{
"data": {
"description": "",
"favicons": [],
"minifetchCache": {
"cachedAt": "",
"expiresAt": "",
"hit": false
},
"og:description": "",
"og:image": "",
"og:site_name": "",
"og:title": "",
"og:type": "",
"og:url": "",
"proxy": {
"proxyType": "",
"proxyUrl": null,
"robotsTxt": {
"allowed": false
},
"userAgent": ""
},
"requestUrl": "",
"title": "",
"twitter:card": "",
"twitter:image": "",
"twitter:title": "",
"url": ""
}
}
],
"success": true
}Payment details
0xffa9155a0e4b3d8d42351da226cc1feee449686fUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Search & Web and the homepage with a featured placement.
More from Minifetch Technical SEO API & similar services
Minifetch Technical SEO API · RUN SEO Page Audit
minifetch.com
Runs a full technical SEO audit on a single web page. Verify redirects, headers, meta tags, indexability, JSON-LD, missing or conflicting canonicals and more. No black-box scoring; just deterministic, composable signal you can act on. Every threshold is documented at https://minifetch.com/skills/seo-page-audit/SKILL.md Supports GET & POST
Minifetch Technical SEO API · Preflight URL Check
minifetch.com
Cheap robots.txt preflight before you pay for other Minifetch endpoints: returns whether the Minifetch user agent may fetch a target URL (allow/deny) plus its crawl-delay. Blocked or setting a crawl delay? https://minifetch.com/tutorials/unblock-minifetch . Checks the URL as given — does not follow redirects. Supports GET & POST
Minifetch Technical SEO API · Extract URL Links
minifetch.com
For SEO link audits: Extracts and categorizes all links on a page (internal, external, anchor) for SEO audits and site-structure analysis. Returns nofollow/rel attributes, anchor text, image links missing alt text, and external domain distribution. Supports GET and POST.