# Minifetch Technical SEO API

> Minifetch Technical SEO API is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Fetches a URL and returns clean markdown extracted by an LLM after stripping nav, ads, and scripts — showing exactly what content AI systems and search engines would read for AEO/GEO optimization.

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_minifetch_com
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minifetch-technical-seo-api-4970dbd0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iOr3oG7eImh70OIfls7yr

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability minifetch-technical-seo-api-4970dbd0
```

Example prompt: Pull up https://www.example.com/about and show me the clean markdown that an AI search engine would actually extract from it — strip out the nav, ads, and scripts so I can see what survives for AEO.

## When to prefer this

Choose this endpoint when you need to audit how an AI system or LLM-powered search engine perceives a specific webpage — particularly for AEO (Answer Engine Optimization) or GEO (Generative Engine Optimization) audits. It is ideal when you want to see the exact clean markdown that survives after boilerplate stripping, rather than raw HTML or a full-page scrape. Prefer this over generic scrapers when the goal is specifically AI readability analysis and SEO optimization for AI search.

## Known failure modes

- URL is blocked by robots.txt — endpoint respects robots.txt and may return empty or error
- Invalid or malformed URL returns failure response
- Page requires JavaScript rendering that cannot be fully resolved
- Private or login-gated pages return minimal or no content
- Network timeout if target page is slow to respond
- Success false with empty results if page has no extractable main content

## How this service works

For site owners auditing AI readability: returns the clean markdown an LLM extracts from your page after nav, ads, and scripts are stripped. See what survives for AEO, GEO and AI search; respects robots.txt

## Output

Returns an array of result objects where each contains a 'data' property with the clean markdown summary of the page content (optimized for LLM token efficiency), the final resolved URL after any redirects, a success boolean, and optionally image and video URLs if includeMediaUrls was set to true.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "The URL from which to extract the content summary."
      },
      "includeMediaUrls": {
       "type": "boolean",
       "description": "Optional. If set to true, includes image and video urls."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "results": {
       "type": "array",
       "description": "Array of result objects with data property containing clean markdown summary, final URL, and optional media URLs. Optimized for LLM token efficiency"
      },
      "success": {
       "type": "boolean"
      },
      "queryParameters": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minifetch-technical-seo-api-4970dbd0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
