SocialCrawl

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

FieldTypeNullableDescription
idstringYes
namestringYesSeller name
domainstringYes
urlstringYes
price.baseintegerYes
price.taxintegerYes
price.shippingintegerYes
price.totalintegerYes
price.currencystringYes
rating.averageintegerYes
rating.countintegerYes
conditionstringYesItem condition (e.g. "New", "Refurbished - Excellent")
availabilitystringYes
annotationstringYes

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.

Platformavailabilitydomainprice.shippingprice.tax
Amazon
Google Shoppingyesyesyesyes

Machine-readable schema

Validate responses programmatically against the JSON Schema (2020-12):

/schemas/seller.json

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:

Amazon · Google Shopping

See how the same fields map to each platform's raw upstream names in the cross-platform field equivalence table.

Seller schema | SocialCrawl