mirrored listing x402 eip155:8453

Convert a public web page into concise, validated Schema

Convert a public web page into concise, validated Schema.org JSON-LD for agents and automation. Supports 200+ entity types and can produce a useful page-level entity when existing markup is missing or incomplete. $0.01 USDC per successful request on Base. Call /check before paying. Payment authorization settles only after a successful response.

Do you run jsonrecon.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-17
updated

Provider

jsonrecon.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xC1726e09aEa4b9b967353B7b56890955E9E5Bc2c",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "schema_type": "auto",
          "url": "https://www.seed-sack.com/products/the-classic-single-seed-sack"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "cached": false,
          "confidence": "high",
          "data": {
            "@context": "https://schema.org",
            "@type": "Product",
            "brand": {
              "@type": "Brand",
              "name": "Seed Sack"
            },
            "name": "The Classic Seed Sack",
            "offers": {
              "@type": "Offer",
              "price": "17.99",
              "priceCurrency": "USD"
            },
            "sku": "11413-1983"
          },
          "extraction_ms": 1200,
          "schema_type": "Product",
          "source": "existing_jsonld",
          "success": true
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "schema_type": {
                  "description": "The specific schema.org entity type to extract (e.g., Article, Product, Recipe, LocalBusiness) or \"auto\" for detection.",
                  "type": "string"
                },
                "suggest": {
                  "description": "Set to true to dynamically identify and return the optimal schema snippet for the page if the site-provided markup is sparse. Use this if you want our AI to suggest the best schema type.",
                  "type": "boolean"
                },
                "url": {
                  "description": "The full URL of the web page to extract schema.org structured data from.",
                  "type": "string"
                }
              },
              "required": [
                "url"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "$schema": "https://json-schema.org/draft/2020-12/schema",
              "additionalProperties": true,
              "description": "A successful Full extraction response containing one primary Schema.org JSON-LD entity and extraction metadata.",
              "properties": {
                "_meta": {
                  "additionalProperties": true,
                  "type": "object"
                },
                "cached": {
                  "type": "boolean"
                },
                "confidence": {
                  "enum": [
                    "high",
                    "medium",
                    "low"
                  ],
                  "type": "string"
                },
                "data": {
                  "additionalProperties": true,
                  "description": "A Schema.org JSON-LD entity. Its fields vary with schema_type.",
                  "properties": {
                    "@context": {},
                    "@type": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "items": {
                            "type": "string"
                          },
                          "minItems": 1,
                          "type": "array"
                        }
                      ]
                    }
                  },
                  "type": "object"
                },
                "extracted_at": {
                  "type": "string"
                },
                "extraction_ms": {
                  "minimum": 0,
                  "type": "number"
                },
                "page_schemas": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array",
                  "uniqueItems": true
                },
                "recommendation": {
                  "type": "string"
                },
                "schema_type": {
                  "description": "The primary Schema.org type represented by data.",
                  "minLength": 1,
                  "type": "string"
                },
                "source": {
                  "description": "The public provenance category for the extracted entity.",
                  "type": "string"
                },
                "success": {
                  "const": true,
                  "type": "boolean"
                },
                "suggested_data": {
                  "additionalProperties": true,
                  "description": "A Schema.org JSON-LD entity. Its fields vary with schema_type.",
                  "properties": {
                    "@context": {},
                    "@type": {
                      "oneOf": [
                        {
                          "type": "string"
                        },
                        {
                          "items": {
                            "type": "string"
                          },
                          "minItems": 1,
                          "type": "array"
                        }
                      ]
                    }
                  },
                  "type": "object"
                },
                "suggested_reason": {
                  "type": "string"
                },
                "suggested_type": {
                  "minLength": 1,
                  "type": "string"
                }
              },
              "required": [
                "success",
                "data",
                "schema_type",
                "confidence",
                "cached",
                "extraction_ms"
              ],
              "title": "JSON Recon Full extraction result",
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://jsonrecon.com/extract"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://jsonrecon.com/extract");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://jsonrecon.com/extract")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/8913.json, and this resource appears in /discovery/resources and /discovery/search.