# MDataAccess Web Page Reader

> MDataAccess Web Page Reader is a paid API for AI agents from api.mdataaccess.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches and returns the readable text content of a given web page URL via HTTP GET.

## Facts

- Endpoint: GET https://api.mdataaccess.com/read
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mdataaccess-web-page-reader-dad86520
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VrKlPPMF9E19SChkFd1mY

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 mdataaccess-web-page-reader-dad86520
```

Example prompt: Can you fetch the readable content from this web page for me: https://www.example.com/article/ai-trends-2025?

## When to prefer this

Use this endpoint when you need to retrieve the readable textual content of a specific known URL — for example, to read an article, check a web page, or extract information from a public webpage. Prefer this over a web search endpoint when you already know the exact URL and want its content rather than a list of search results. For multi-page crawls, prefer the site crawl sibling endpoint.

## Known failure modes

- Invalid or malformed URL returns an error
- Page behind authentication or a paywall may return empty or partial content
- URL that returns non-HTML content (e.g. PDF, binary) may not extract readable text
- Timeout if the target URL is slow or unreachable
- Rate limiting if too many requests are made in quick succession

## How this service works

Retrieve readable content from a web page.

## Output

Returns an array of results containing the readable text content of the requested web page, along with the source URL and provider name. The content is in a human- and machine-readable format suitable for downstream processing by an AI agent.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL of the webpage to retrieve."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "provider",
      "url",
      "results"
     ],
     "properties": {
      "url": {
       "type": "string"
      },
      "results": {
       "type": "array"
      },
      "provider": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mdataaccess-web-page-reader-dad86520/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.mdataaccess.com](https://www.zero.xyz/host/api.mdataaccess.com/llms.txt)
