# MDataAccess Web Scraper

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

Scrapes a webpage at a given URL and returns its content in machine-readable format.

## Facts

- Endpoint: GET https://api.mdataaccess.com/scrape
- Price: $0.012/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-scraper-9f9b1c23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WyusokD9yPKdfFPWVPZ3V

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-scraper-9f9b1c23
```

Example prompt: Can you scrape the webpage at https://example.com/products and give me its contents in a machine-readable format?

## When to prefer this

Choose this endpoint when you need machine-readable structured content from a single specific URL, especially when you want the raw page data in a structured object format suitable for agent parsing. Prefer this over the readable-content endpoint if you need the full data object rather than human-readable text, and over the multi-page crawl endpoint when you only need one URL.

## Known failure modes

- Invalid or malformed URL returns an error
- Target page returns a non-200 HTTP status (e.g. 404 or 403) resulting in a scrape failure
- Paywalled or bot-protected pages may return incomplete or blocked content
- Network timeouts on slow or unresponsive target servers
- URL parameter missing causes request validation failure

## How this service works

Scrape a webpage and return machine-readable content.

## Output

Returns machine-readable structured content of the scraped webpage, including the provider name, the URL that was scraped, and a data object containing the parsed page contents.

## 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 scrape."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "provider",
      "url",
      "data"
     ],
     "properties": {
      "url": {
       "type": "string"
      },
      "data": {
       "type": "object"
      },
      "provider": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mdataaccess-web-scraper-9f9b1c23/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)
