# AutoScrape Schema Markup Extractor

> AutoScrape Schema Markup Extractor is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Extracts structured data (schema.org markup) from one or more public URLs, returning detected schema types and structured data presence

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/schema-markup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-schema-markup-extractor-2f5da878
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v-_MzNDVia8w7xAMJLvfP

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 autoscrape-schema-markup-extractor-2f5da878
```

Example prompt: Can you check what schema.org structured data types are present on apple.com and tell me if it has any structured markup?

## When to prefer this

Choose this endpoint when you need to detect or audit schema.org structured data markup on public web pages without needing full page scraping. It is ideal for SEO audits, competitive research, or verifying that a site correctly implements structured data. Prefer this over general web scraping endpoints when the specific goal is schema type identification rather than full content extraction.

## Known failure modes

- URL is not publicly accessible — returns empty results or error
- Requested URL has no schema markup — returns hasStructuredData: false with empty allSchemaTypes
- maxResults capped at 3 even if more URLs are provided
- Malformed or invalid URL input — may return parse error
- Rate limiting or payment failure via x402 — returns 402 Payment Required

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count and an array of results, each containing the URL checked, a boolean hasStructuredData flag, and an allSchemaTypes array listing every detected schema.org type (e.g. 'Organization', 'Product', 'BreadcrumbList') found on that page.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "url": "https://www.apple.com",
    "allSchemaTypes": [
     "Organization"
    ],
    "hasStructuredData": true
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-schema-markup-extractor-2f5da878/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
