Strip the envelope
Unwrap each acquisition payload and reduce it to the records the operation actually needs.
One contract, every operation
Glade turns volatile marketplace pages into one canonical contract across 17 operations and 13 marketplaces, validated before every response.
Before // every source speaks a different language
Glade normalization engine
After // one canonical shape, every operation
{
"identity": { "asin": "B0D1XD1ZV3" },
"price": {
"value": 79.99,
"currency": "USD"
},
"availability": "in_stock",
"marketplace": "US",
"requestMeta": { "cached": true }
}One integration. 17 operations. 13 marketplaces. The same validated contract on every response.
The problem
Product, search, offer, and review pages expose the same ideas through different paths. Add locale, currency, marketplace, page drift, and missing fields, and one integration quickly becomes a stack of special cases.
How it works
Every raw record passes through the same five-stage boundary. Nothing undeclared crosses into the public API.
Unwrap each acquisition payload and reduce it to the records the operation actually needs.
A declarative map renames provider and page-specific paths into Glade’s canonical fields.
Attach the domain, locale, currency, and request identity that make the record usable.
Coerce stable types, normalize enums, and return documented nulls when a source is silent.
Check the completed object before it crosses the REST, GraphQL, MCP, or Skill boundary.
“Different inputs go in. The same contractual discipline comes out.”
Computed intelligence
When the source provides enough information, deterministic code normalizes price and currency, stock state, placement, sponsorship, ratings, marketplace context, and request metadata. If the source does not know, Glade returns null.
{
"computed": {
"price": { "value": 79.99, "currency": "USD" },
"isInStock": true,
"placement": 3,
"sponsored": false
}
}Models reason; contracts compute.
The proprietary edge
One canonical schema is the source of truth for every operation and every interface. Change it once, and each public surface updates from the same definition.
Canonical types and the operation catalog define every supported field exactly once.
A field change flows through runtime validation, examples, OpenAPI, GraphQL, MCP, and the Skill.
The completed object passes its contract gate before it is returned as a successful response.
Undeclared source fields stay behind the boundary instead of becoming accidental public API.
“The documentation cannot drift from the implementation, because both derive from the same source.”
One schema, every object
The same discipline extends across every Amazon object Glade returns—not only products. Build typed consumers once and reuse the conventions everywhere.
One contract vocabulary spans products, discovery, commerce, reviews, sellers, categories, estimates, and request context.
See the full schema referenceThe shape of it
13
marketplaces
17
operations
11
canonical objects
1
schema
Glade replaces a collection of provider-shaped integrations with one public Amazon data contract.
Glade: One key and one public contract
Self-managed: Provider keys and contracts per source
Glade: Stable Amazon-domain fields
Self-managed: Different paths for pages and providers
Glade: Domain, locale, and currency included
Self-managed: Reconstructed inside every integration
Glade: Documented nullable fields
Self-managed: Silent omissions and provider sentinels
Glade: Generated from the runtime contract
Self-managed: Hand-maintained beside the implementation
Frequently asked questions
Can’t find what you’re looking for? Talk to our team.
No. Product, search, seller, review, category, and estimate operations return purpose-built canonical objects. They share the same naming discipline, request metadata, marketplace context, error model, and validation boundary.
Raw page and provider payloads are private implementation details. Glade maps them into provider-neutral contracts and validates the completed object before returning it.
Glade returns a documented optional or null value. It does not invent data or pass through provider-specific placeholder strings.
Yes. Each interface resolves through the same operation catalog and canonical objects, so changing transport does not require remapping your data model.
The canonical types and operation catalog generate validation, API references, interface metadata, and examples. A contract change updates the public surfaces together.
Additive changes can arrive within the current version. Breaking changes require an explicit version boundary rather than silently changing an existing field.
One integration
Call one Amazon operation and inspect the validated contract you can reuse across products, search, offers, reviews, sellers, categories, and estimates.
curl "https://gladeapi.com/api/amazon/product?asin=B0D1XD1ZV3&domain=US" \
-H "API-KEY: glade_live_YOUR_API_KEY"