# NetIntel OG Scraper / Metadata Extractor

> NetIntel OG Scraper / Metadata Extractor is a paid API for AI agents from netintel.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Extracts Open Graph metadata, structured data (JSON-LD), and SEO signals from any public URL, returning a quality-graded metadata report

## Facts

- Endpoint: GET https://netintel.dev/og-scraper/extract
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-og-scraper-metadata-extractor-24655db1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q_F64lnr5_vxr0s9N_NeI

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 netintel-og-scraper-metadata-extractor-24655db1
```

Example prompt: Can you pull the Open Graph metadata from https://techcrunch.com/2024/01/15/some-article — I want the title, description, og:image, author, publish date, and a quality grade for how complete the metadata is?

## When to prefer this

Use this endpoint when you need rich, graded Open Graph and structured metadata from a single public URL — especially when you care about JSON-LD, SEO quality scoring, canonical URL resolution, and publish/modified timestamps in one call. Prefer this over generic HTTP fetch when you need a structured metadata report with a quality grade rather than raw HTML.

## Known failure modes

- URL is not publicly accessible or requires authentication — returns non-200 status or error
- Page has no OG tags — returns empty/null fields with low score and grade
- URL redirects to a login wall — final_url differs from input, minimal metadata returned
- Malformed or non-HTTP URL input — schema validation error
- Page timeout or unreachable host — upstream fetch error
- Paywalled content — only minimal head-section metadata extractable

## How this service works

Fetch any public URL and extract structured metadata — Open Graph tags, Twitter Card tags, canonical URL, title, description, favicon, article author/date, JSON-LD structured data, and content type — so agents can preview, classify, and enrich links without building their own scraper.

## Output

A JSON object containing the page's OG title, description, image URL, author, site name, canonical URL, final (redirect-resolved) URL, favicon, Twitter card type, JSON-LD structured data blob, published and modified timestamps, HTTP status code, content type, an array of SEO findings/issues, a numeric quality score (0–100), and a letter grade (e.g. 'A') summarizing metadata completeness.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public URL to extract metadata from (e.g. https://github.com/coinbase/x402)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "image": {
       "type": [
        "string",
        "null"
       ]
      },
      "score": {
       "type": "number"
      },
      "title": {
       "type": "string"
      },
      "author": {
       "type": [
        "string",
        "null"
       ]
      },
      "favicon": {
       "type": [
        "string",
        "null"
       ]
      },
      "json_ld": {
       "type": [
        "object",
        "null"
       ]
      },
      "findings": {
       "type": "array"
      },
      "final_url": {
       "type": "string"
      },
      "site_name": {
       "type": [
        "string",
        "null"
       ]
      },
      "description": {
       "type": [
        "string",
        "null"
       ]
      },
      "modified_at": {
       "type": [
        "string",
        "null"
       ]
      },
      "status_code": {
       "type": "number"
      },
      "content_type": {
       "type": "string"
      },
      "published_at": {
       "type": [
        "string",
        "null"
       ]
      },
      "twitter_card": {
       "type": [
        "string",
        "null"
       ]
      },
      "canonical_url": {
       "type": [
        "string",
        "null"
       ]
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://github.com/coinbase/x402",
  "grade": "A",
  "image": "https://opengraph.githubassets.com/d86e2f3ce6d1051d325e229bc56ef07c81a8e75e7455c3d5b52de8a1031e6a51/coinbase/x402",
  "score": 100,
  "title": "GitHub - coinbase/x402: A payments protocol for the internet. Built on HTTP.",
  "author": null,
  "favicon": "https://github.githubassets.com/favicons/favicon",
  "json_ld": null,
  "findings": [],
  "final_url": "https://github.com/coinbase/x402",
  "site_name": "GitHub",
  "description": "A payments protocol for the internet. Built on HTTP. - coinbase/x402",
  "modified_at": null,
  "status_code": 200,
  "content_type": "object",
  "published_at": null,
  "twitter_card": "summary_large_image",
  "canonical_url": "https://github.com/coinbase/x402"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-og-scraper-metadata-extractor-24655db1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
