# MDataAccess Web Search

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

Performs a natural-language web search and returns structured search results optimized for autonomous agent consumption.

## Facts

- Endpoint: GET https://api.mdataaccess.com/search
- Price: $0.01/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-search-6aba476d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sIzCR1jZwAoTm8Ue_i1fx

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-search-6aba476d
```

Example prompt: Search the web for the latest developments in quantum computing and return the top 5 results with titles, URLs, and summaries.

## When to prefer this

Choose this endpoint when an agent needs live, up-to-date web search results with structured output tailored for autonomous agent consumption. It is especially useful when training-data cutoffs make LLM knowledge insufficient, or when real-time information (news, prices, recent events) is required. Prefer it over raw HTTP scraping when you need a ranked list of relevant URLs and snippets rather than the full content of a single page.

## Known failure modes

- Missing required query parameter 'q' returns a 400 Bad Request
- num_results exceeding maximum of 10 returns a validation error
- Payment failure or missing x402 payment header results in a 402 Payment Required response
- Queries with no matching web results return an empty results array
- Rate limiting or quota exhaustion may return a 429 Too Many Requests error
- Network timeouts for slow upstream search providers may return a 503 error

## How this service works

Search the web. Returns structured search results suitable for autonomous agents.

## Output

Returns a structured JSON object containing the original query, the provider name, and an array of search results. Each result typically includes a title, URL, and snippet/summary suitable for agent reasoning and downstream processing.

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Natural-language web search query."
      },
      "num_results": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Number of search results to return."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "provider",
      "query",
      "results"
     ],
     "properties": {
      "query": {
       "type": "string"
      },
      "results": {
       "type": "array"
      },
      "provider": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

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