v1

latestOpenAPI 3.1.0MIT2026-07-132176113.0 KB
metascrape

Scrape a webpage meta with custom options

post/meta-scraping

Request body

urlstring required

Target URL

device'desktop' | 'mobile'

Device type to emulate. Defaults to desktop.

blockAdsboolean

Whether to block ads

renderJSboolean

Whether to render JavaScript

proxyCountrystring

Proxy country code to route the request

format'markdown' | 'json'

Format of the scraped result. Defaults to html.

fileOutputboolean

Whether to get response in file format

Example request

{
  "url": "https://example.com",
  "device": "desktop",
  "blockAds": true,
  "renderJS": true,
  "proxyCountry": "us",
  "format": "json"
}

Response

Successfully scraped webpage meta

timestampnumber required

Timestamp of the request in milliseconds

apiStatus'success' | 'failure' required

API status message

apiCodenumber required

API status code

Example response

{
  "timestamp": 1763372588297,
  "apiStatus": "success",
  "apiCode": 200,
  "meta": {
    "url": "https://example.com",
    "device": "desktop",
    "format": "json",
    "blockAds": true,
    "renderJS": true,
    "test": {
      "id": "mxqx9v9y0742lap6altwdteqd28t23nq"
    }
  }
}
All 21 operations