For SEO link audits
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. Obeys robots.txt. Supports GET & POST
Answeringour last check, 2026-09-24
1 of 1checks answered this week
435 msmedian answer time
$0.002listed price per call
$0.002price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://minifetch.com/api/v1/x402/extract/url-links
| Category | Image and media |
|---|---|
| Provider host | minifetch.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.002 | 435 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"url": "https://www.anthropic.com"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"url": {
"description": "The target URL from which to extract the links.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"results": {
"items": {
"properties": {
"data": {
"properties": {
"links": {
"properties": {
"anchors": {
"description": "In-page #fragment links, each { href, text }",
"type": "array"
},
"external": {
"description": "Cross-host links, each { href, text, rel[] }",
"type": "array"
},
"internal": {
"description": "Same-host links, each { href, text, rel[] }",
"type": "array"
},
"summary": {
"description": "Aggregate link stats for SEO / site-structure analysis",
"properties": {
"anchorCount": {
"type": "integer"
},
"emptyTextCount": {
"type": "integer"
},
"externalCount": {
"type": "integer"
},
"imageLinksMissingAltCount": {
"type": "integer"
},
"internalCount": {
"type": "integer"
},
"nofollowCount": {
"type": "integer"
},
"topExternalDomains": {
"description": "Busiest external domains, each { domain, count }",
"type": "array"
},
"topInternalTargets": {
"description": "Most-linked internal pages, each { url, count, anchorTexts[] }",
"type": "array"
},
"totalLinks": {
"type": "integer"
},
"uniqueExternalDomains": {
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"minifetchCache": {
"description": "Minifetch cache state (~2-min TTL)",
"properties": {
"cachedAt": {
"type": "string"
},
"expiresAt": {
"type": "string"
},
"hit": {
"type": "boolean"
}
},
"type": "object"
},
"proxy": {
"description": "Fetch provenance",
"properties": {
"proxyType": {
"type": "string"
},
"proxyUrl": {
"type": [
"string",
"null"
]
},
"robotsTxt": {
"properties": {
"allowed": {
"type": "boolean"
}
},
"type": "object"
},
"userAgent": {
"type": "string"
}
},
"type": "object"
},
"requestUrl": {
"description": "URL as requested, before redirects",
"type": "string"
},
"url": {
"description": "Final URL after redirects",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"type": "array"
},
"success": {
"type": "boolean"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input