# JSONRecon Lite Schema.org JSON-LD Extractor

> JSONRecon Lite Schema.org JSON-LD Extractor is a paid API for AI agents from jsonrecon.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fast, deterministic extraction of existing schema.org JSON-LD markup from any URL without AI, at $0.005 per call

## Facts

- Endpoint: GET https://jsonrecon.com/extract/lite
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jsonrecon-com-eeb6bbde
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IRmjNEW_iFsGSgEuRELJE

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 jsonrecon-com-eeb6bbde
```

Example prompt: Pull the existing schema.org JSON-LD structured data from this page — https://patents.google.com/patent/US11234567 — without using AI, just grab whatever markup is already there.

## When to prefer this

Choose this endpoint when you need to deterministically retrieve schema.org JSON-LD that already exists in a page's markup, with no AI involvement, at minimal cost ($0.005). Ideal for Google Patents and academic publisher URLs where fast-paths are built in. Use the free /check?url=TARGET endpoint first to avoid wasting payment on known-difficult domains. Prefer this over the AI-augmented sibling endpoint when the page is known to have existing markup and you don't need schema suggestions.

## Known failure modes

- Known-difficult domain (CAPTCHA, auth walls) — auto-rejected before payment is charged
- No schema.org JSON-LD found on the target page — empty or null result returned
- Invalid or malformed URL — request rejected
- Target URL unreachable or returns non-200 — extraction fails
- Rate limiting or timeout on the target server — may return error

## How this service works

Concise Schema.org JSON-LD and field-level Product verification for AI agents. Pay only for successful results with USDC on Base.

## Output

Returns the raw schema.org JSON-LD structured data already embedded in the target page, including any recognized types like Product, Article, LocalBusiness, Event, etc. If no existing markup is found or the domain is known-difficult (CAPTCHA, auth walls), the call is rejected before charging. Fast-paths are applied for Google Patents and academic publishers.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "url": "https://www.schema.org"
  }
 }
}
```

## 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": "The precise URL of a public page whose published Schema.org data should be retrieved."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "JSON Recon Lite retrieval result",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "success",
      "data",
      "schema_type",
      "confidence",
      "cached",
      "extraction_ms"
     ],
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "@type": {
         "oneOf": [
          {
           "type": "string"
          },
          {
           "type": "array",
           "items": {
            "type": "string"
           },
           "minItems": 1
          }
         ]
        },
        "@context": {}
       },
       "description": "A Schema.org JSON-LD entity. Its fields vary with schema_type.",
       "additionalProperties": true
      },
      "_meta": {
       "type": "object",
       "additionalProperties": true
      },
      "cached": {
       "type": "boolean"
      },
      "source": {
       "type": "string",
       "description": "The public provenance category for the extracted entity."
      },
      "success": {
       "type": "boolean",
       "const": true
      },
      "confidence": {
       "enum": [
        "high",
        "medium",
        "low"
       ],
       "type": "string"
      },
      "schema_type": {
       "type": "string",
       "minLength": 1,
       "description": "The primary Schema.org type represented by data."
      },
      "extracted_at": {
       "type": "string"
      },
      "page_schemas": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "uniqueItems": true
      },
      "extraction_ms": {
       "type": "number",
     
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "sku": "11413-1983",
   "name": "The Classic Seed Sack",
   "@type": "Product",
   "brand": {
    "name": "Seed Sack",
    "@type": "Brand"
   },
   "offers": {
    "@type": "Offer",
    "price": "17.99",
    "priceCurrency": "USD"
   },
   "@context": "https://schema.org"
  },
  "cached": false,
  "source": "existing_jsonld",
  "success": true,
  "confidence": "high",
  "schema_type": "Product",
  "extraction_ms": 350
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jsonrecon-com-eeb6bbde/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jsonrecon.com](https://www.zero.xyz/host/jsonrecon.com/llms.txt)
