Download OpenAPI specification:Download
Discovery Node is a product discovery engine that uses AI to find products that match your search query.
Search for products using a natural language query. Returns a list of relevant products ranked by similarity score.
q required | string Example: q=wireless noise canceling headphones Search query (e.g., "wireless headphones", "laptop under $1000") |
{- "@type": "SearchResultsPage",
- "query": "wireless headphones",
- "numberOfResults": 10,
- "results": [
- {
- "@type": "Product",
- "@id": "urn:cmp:org:123e4567:brand:456e7890:sku:789e0123",
- "name": "Premium Wireless Headphones",
- "description": "High-quality wireless headphones with active noise cancellation",
- "sku": "WH-1000XM5",
- "brand": {
- "@type": "Brand",
- "name": "AudioTech",
- "@id": "urn:cmp:org:123e4567:brand:456e7890"
}, - "offers": {
- "@type": "Offer",
- "price": "349.99",
- "priceCurrency": "USD",
}, - "category": "Electronics > Audio > Headphones",
- "aggregateRating": {
- "@type": "AggregateRating",
- "ratingValue": 4.5,
- "reviewCount": 1289
}
}
]
}
Retrieve detailed information about a specific product or product group by URN.
urn required | string Example: urn:cmp:org:123e4567:brand:456e7890:sku:789e0123 Product or ProductGroup URN |
{- "@type": "ItemList",
- "itemListElement": [
- {
- "@type": "ListItem",
- "position": 1,
- "item": {
- "@type": "Product",
- "@id": "urn:cmp:org:123e4567:brand:456e7890:sku:789e0123",
- "name": "Premium Wireless Headphones",
- "description": "High-quality wireless headphones with active noise cancellation",
- "sku": "WH-1000XM5",
- "brand": {
- "@type": "Brand",
- "name": "AudioTech",
- "@id": "urn:cmp:org:123e4567:brand:456e7890"
}, - "offers": {
- "@type": "Offer",
- "price": "349.99",
- "priceCurrency": "USD",
}, - "category": "Electronics > Audio > Headphones",
- "aggregateRating": {
- "@type": "AggregateRating",
- "ratingValue": 4.5,
- "reviewCount": 1289
}
}
}
]
}