Skip to content
Eden Engine

Web Page HTML Scraper

omnial/web-scrape-html

Fetches a single URL and returns its rendered HTML along with page metadata (title, language, favicon, headings). Can strip chrome down to main content only, inline iframes, wait for animations to settle, and reuse a recent cached fetch instead of re-scraping.

activeper callv1
Provider
Web & Business Data Network
Category
web_scrape
Provider price
$0.0012285 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Full URL to fetch, including the http:// or https:// scheme."
    },
    "maxAgeMs": {
      "type": "integer",
      "default": 86400000,
      "maximum": 2592000000,
      "minimum": 0,
      "description": "Reuse a cached result younger than this many milliseconds. Default 86400000 (1 day), max 2592000000 (30 days). Set 0 to always fetch fresh."
    },
    "includeFrames": {
      "type": "boolean",
      "default": false,
      "description": "Render iframes inline into the returned HTML. Default false."
    },
    "settleAnimations": {
      "type": "boolean",
      "default": false,
      "description": "Wait briefly for CSS and transition animations to settle before the HTML is captured. Default false."
    },
    "useMainContentOnly": {
      "type": "boolean",
      "default": false,
      "description": "Keep only the page's main content, dropping headers, footers, sidebars, and navigation when detectable. Default false."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "success",
    "html",
    "url",
    "metadata"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL that was actually scraped (echoes the request)."
    },
    "html": {
      "type": "string",
      "description": "The page's rendered HTML."
    },
    "type": {
      "type": "string",
      "description": "The result format, always \"html\" for this tool."
    },
    "success": {
      "type": "boolean",
      "description": "Whether the scrape completed successfully."
    },
    "metadata": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "favicon": {
          "type": "string",
          "description": "The page's favicon, as a URL or a data: URI."
        },
        "finalUrl": {
          "type": "string",
          "description": "The URL after following any redirects."
        },
        "headings": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "text": {
                "type": "string"
              },
              "level": {
                "type": "integer",
                "description": "Heading level, 1-6."
              }
            },
            "additionalProperties": true
          },
          "description": "Headings found on the page, in document order."
        },
        "language": {
          "type": "string"
        },
        "sourceUrl": {
          "type": "string",
          "description": "The URL originally requested."
        },
        "additionalMeta": {
          "type": "object",
          "description": "Other <meta> tag values keyed by name, when present.",
          "additionalProperties": true
        }
      },
      "description": "Page metadata extracted alongside the HTML.",
      "additionalProperties": true
    }
  },
  "description": "The scraped page, narrowed from the provider's whole `output` object.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0012285
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026