Seller schema
The unified SocialCrawl seller offer schema. Every field, its type, per-platform availability, and a machine-readable JSON Schema, generated from the canonical Zod source.
Seller schema
Every SocialCrawl endpoint that returns a seller offer gives you this exact shape, whatever the source platform. Write your parser once and the same code reads seller data from every platform below. That is the unified schema: one contract instead of a dozen raw upstream formats.
Field reference
| Field | Type | Nullable | Description |
|---|---|---|---|
id | string | Yes | |
name | string | Yes | Seller name |
domain | string | Yes | |
url | string | Yes | |
price.base | integer | Yes | |
price.tax | integer | Yes | |
price.shipping | integer | Yes | |
price.total | integer | Yes | |
price.currency | string | Yes | |
rating.average | integer | Yes | |
rating.count | integer | Yes | |
condition | string | Yes | Item condition (e.g. "New", "Refurbished - Excellent") |
availability | string | Yes | |
annotation | string | Yes |
Platform availability
2 platforms return the Seller shape. yes means the platform populates the field (the value may still be null); a blank means the platform never provides it, so it is always null.
| Platform | availability | domain | price.shipping | price.tax |
|---|---|---|---|---|
| Amazon | ||||
| Google Shopping | yes | yes | yes | yes |
Machine-readable schema
Validate responses programmatically against the JSON Schema (2020-12):
Point a validator (Ajv, jsonschema, or your framework's) at that URL, or hand it to an agent so it can check the shape without a live call.
Returned by
Endpoints with the Seller / SellerList archetype return this shape:
See how the same fields map to each platform's raw upstream names in the cross-platform field equivalence table.
Review schema
The unified SocialCrawl review schema. Every field, its type, per-platform availability, and a machine-readable JSON Schema, generated from the canonical Zod source.
Place schema
The unified SocialCrawl place or business schema. Every field, its type, per-platform availability, and a machine-readable JSON Schema, generated from the canonical Zod source.
