Skip to main content
GET
https://api.trycase.ai/api/v1
/
products
/
{id}
curl -X GET "https://api.trycase.ai/api/v1/products/prod_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "prod_abc123",
  "name": "2021 Reserve Cabernet Sauvignon",
  "brand": "Stag's Leap Wine Cellars",
  "varietal": "Cabernet Sauvignon",
  "vintage": 2021,
  "region": "Napa Valley",
  "appellation": "Stags Leap District",
  "country": "USA",
  "abv": 14.5,
  "size_ml": 750,
  "pack_size": 12,
  "case_price_cents": 24000,
  "bottle_price_cents": 2000,
  "inventory_available": 45,
  "minimum_order": 1,
  "sku": "SLWC-CAB-2021",
  "upc": "123456789012",
  "description": "Our flagship Cabernet from the renowned Stags Leap District.",
  "tasting_notes": "Rich and full-bodied with notes of black cherry, cassis, and hints of vanilla from French oak aging. Firm tannins with a long, elegant finish.",
  "supplier": {
    "id": "sup_xyz789",
    "name": "Stag's Leap Wine Cellars",
    "location": "Napa, CA",
    "total_products": 42
  },
  "image_url": "https://cdn.trycase.ai/products/abc123.jpg",
  "created_at": "2025-01-10T10:00:00Z",
  "updated_at": "2025-01-12T15:30:00Z"
}

Get Product

Retrieve detailed information about a specific product by ID.
id
string
required
The unique product ID
curl -X GET "https://api.trycase.ai/api/v1/products/prod_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "prod_abc123",
  "name": "2021 Reserve Cabernet Sauvignon",
  "brand": "Stag's Leap Wine Cellars",
  "varietal": "Cabernet Sauvignon",
  "vintage": 2021,
  "region": "Napa Valley",
  "appellation": "Stags Leap District",
  "country": "USA",
  "abv": 14.5,
  "size_ml": 750,
  "pack_size": 12,
  "case_price_cents": 24000,
  "bottle_price_cents": 2000,
  "inventory_available": 45,
  "minimum_order": 1,
  "sku": "SLWC-CAB-2021",
  "upc": "123456789012",
  "description": "Our flagship Cabernet from the renowned Stags Leap District.",
  "tasting_notes": "Rich and full-bodied with notes of black cherry, cassis, and hints of vanilla from French oak aging. Firm tannins with a long, elegant finish.",
  "supplier": {
    "id": "sup_xyz789",
    "name": "Stag's Leap Wine Cellars",
    "location": "Napa, CA",
    "total_products": 42
  },
  "image_url": "https://cdn.trycase.ai/products/abc123.jpg",
  "created_at": "2025-01-10T10:00:00Z",
  "updated_at": "2025-01-12T15:30:00Z"
}