Wine-Searcher · Example Payload

Wine Searcher Market Price Example

DataMarketplaceWinePricesMerchantsVintagesCritics

Wine Searcher Market Price Example is an example object payload from Wine-Searcher, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationmethodpathsummaryrequestresponse

Example Payload

Raw ↑
{
  "operation": "get-market-price",
  "method": "GET",
  "path": "/market-price",
  "summary": "Get Market Price Listings",
  "request": {
    "api_key": "your_api_key",
    "winename": "screaming+eagle+cabernet+sauvignon",
    "vintage": "2018",
    "currencycode": "USD",
    "location": "USA",
    "offer_type": "R",
    "format": "json"
  },
  "response": {
    "status": 0,
    "message": "Success",
    "wine_name": "Screaming Eagle Cabernet Sauvignon",
    "vintage": "2018",
    "listings": [
      {
        "merchant_name": "K&L Wine Merchants",
        "merchant_description": "Fine wine retailer specializing in Bordeaux and California",
        "price": 1850.00,
        "currency": "USD",
        "vintage": "2018",
        "bottle_size": "750ml",
        "offer_type": "retail",
        "physical_address": "638 4th Street, San Francisco, CA 94107",
        "country": "USA",
        "state": "CA",
        "zip_code": "94107",
        "latitude": 37.7749,
        "longitude": -122.4194,
        "link": "https://www.klwines.com/Products/i?i=1234567"
      },
      {
        "merchant_name": "Wine.com",
        "merchant_description": "Online wine retailer",
        "price": 1975.00,
        "currency": "USD",
        "vintage": "2018",
        "bottle_size": "750ml",
        "offer_type": "retail",
        "country": "USA",
        "link": "https://www.wine.com/product/screaming-eagle/1234"
      }
    ]
  }
}