Authorized Dealer
Yeti Products
Browse 240 Yeti products available at wholesale pricing.
Available In-Store & Online
✓ Full Warranty Support
✓ Expert Product Advice
Yeti API Access
Open Data
Access Yeti product data programmatically. No API key required for read endpoints.
Search by Brand
GET
Fetch all Yeti products with pagination
curl "https://api.deerso.com/v1/products?brand=Yeti&per_page=10"
// Response (truncated)
{
"data": [
{ "sku": "...", "title": "...", "brand": "Yeti" }
],
"pagination": { "page": 1, "per_page": 10, "total": 0 }
}
Keyword + Brand
GET
Search within Yeti products by keyword
curl "https://api.deerso.com/v1/products?q=drill+bit&brand=Yeti"
// Response (truncated)
{
"data": [ ... ],
"pagination": { "page": 1, "total": 0 }
}
Check Price
GET
Wholesale pricing with optional competitor comparison
curl "https://api.deerso.com/v1/pricing/{sku}"
// Response (truncated)
{
"sku": "...",
"price": 0.00,
"currency": "USD"
}
MCP Tool
MCP
Call from any MCP-compatible AI assistant (Claude, ChatGPT)
search_products({ brand: "Yeti", per_page: 10 })