# apiacre.com Schema.org Normalizer

> apiacre.com Schema.org Normalizer is a paid API for AI agents from apiacre.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Normalizes caller-supplied inline Schema.org JSON-LD into deterministic Organization, Product, Service, Article, and Event entities with privacy scrubbing and field-level evidence hashes.

## Facts

- Endpoint: POST https://apiacre.com/v1/data/schemaorg-normalize
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apiacre-com-schema-org-normalizer-3748229d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h8bG5zmI13wd_oJ69S_Hq

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 apiacre-com-schema-org-normalizer-3748229d -d '<json body>'
```

Example prompt: Take this raw Schema.org JSON-LD markup I scraped from a product page and normalize it into a clean, deterministic Product entity — scrub any personal data and return field-level evidence hashes so I can verify provenance later.

## When to prefer this

Choose this endpoint when you need to normalize raw Schema.org JSON-LD into a canonical, privacy-safe entity representation with field-level evidence hashes for auditability. It is especially suited for pipelines that ingest structured data from multiple web sources and require deterministic output for deduplication, comparison, or downstream indexing — and where PII scrubbing is a compliance requirement.

## Known failure modes

- Invalid or malformed JSON-LD returns a parse error
- Unsupported Schema.org type returns a type-not-supported error
- Missing required @type property causes normalization failure
- Deeply nested or ambiguous schema graphs may produce partial entity output
- Non-Schema.org JSON payloads rejected with schema validation error

## How this service works

Normalize caller-supplied inline Schema.org JSON-LD into deterministic Organization, Product, Service, Article, and Event entities with privacy scrubbing and field-level evidence hashes.

## Output

A deterministic, normalized entity object (Organization, Product, Service, Article, or Event) extracted from the supplied Schema.org JSON-LD, with PII-scrubbed fields and cryptographic evidence hashes per field for provenance verification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "html": {
   "type": "string"
  },
  "base_url": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  },
  "include_types": {
   "type": "array",
   "items": {
    "enum": [
     "Organization",
     "Product",
     "Service",
     "Article",
     "Event"
    ],
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "nodes": [
    {
     "id": "https://merchant.example/products/acre-audit",
     "type": "Product",
     "fields": {
      "sku": "ACRE-1",
      "name": "Acre Audit",
      "offers": [
       {
        "price": "19.00",
        "priceCurrency": "USD"
       }
      ]
     },
     "evidence": [
      {
       "field": "name",
       "blockIndex": 0,
       "jsonPointer": "/name",
       "valueSha256": "ae1a7c0779ad2136ec1fb0b0d4fc41b3b2b4725705a0be16db9e6131a1259678"
      }
     ]
    }
   ],
   "warnings": [],
   "conflicts": [],
   "nodesSeen": 1,
   "typeCounts": {
    "Product": 1
   },
   "vocabulary": {
    "url": "https://schema.org/",
    "name": "Schema.org",
    "license": "CC BY-SA 3.0",
    "licenseUrl": "https://creativecommons.org/licenses/by-sa/3.0/"
   },
   "scriptsSeen": 1,
   "nodesReturned": 1,
   "documentSha256": "d81765f451d9a26a0f3d57a2a54f93814e69e74619b833e6ab1ca7c054aa3eb2"
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": []
  },
  "service": "data.schemaorg-normalize",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apiacre-com-schema-org-normalizer-3748229d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiacre.com](https://www.zero.xyz/host/apiacre.com/llms.txt)
