Discover/Vinisfoods API
live

Vinisfoods APIvinisfoods.com

Access the complete Vini's Foods product catalog via API. Retrieve titles, prices, variants, availability, and images for Italian-inspired grocery products shipped across India.

This API takes change requests — .
Endpoint health
verified 4h ago
list_products
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

What is the Vinisfoods API?

The Vini's Foods API exposes the store's full product catalog through a single list_products endpoint, returning up to the complete inventory in one response with 9 fields per product object including title, price, vendor, variants, tags, and image URL. It is suited for price monitoring, catalog integration, and building food-focused shopping tools targeting the Indian market.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/8b06c09b-e98c-484f-89b4-e4494cfc1d66/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8b06c09b-e98c-484f-89b4-e4494cfc1d66/list_products' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace vinisfoods-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Vini's Foods SDK — bounded, re-runnable; every call capped."""
from parse_apis.vinisfoods_com_api import VinisFoods, ParseError

client = VinisFoods()

# List all products and print name + price info
for product in client.products.list(limit=3):
    variant = product.variants[0] if product.variants else None
    price = variant.price if variant else "N/A"
    print(product.title, product.product_type, price)

# Get first product and inspect its details
item = client.products.list(limit=1).first()
try:
    print(item.title, item.handle, item.vendor, item.tags)
    for v in item.variants:
        print(f"  {v.title}: Rs.{v.price} (available={v.available})")
except ParseError as e:
    print(f"error: {e.code}")

print("exercised: products.list")
All endpoints · 1 totalmissing one? ·

Retrieve all products from the Vini's Foods catalog. Each product includes title, type, vendor, tags, variant details (size, price, availability), and image URL. Results are returned in a single page containing the complete catalog.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of products returned",
    "products": "array of product objects with id, title, handle, product_type, vendor, tags, variants, image_url, published_at"
  },
  "sample": {
    "data": {
      "total": 31,
      "products": [
        {
          "id": 7065624707208,
          "tags": [
            "Pasta and Pizza sauce",
            "Sicily Range"
          ],
          "title": "Pizza Sauce",
          "handle": "pizza-sauce-classic",
          "vendor": "Vini's Foods",
          "variants": [
            {
              "id": 46132059537544,
              "price": "275.00",
              "title": "300 gm",
              "available": true,
              "compare_at_price": "275.00"
            }
          ],
          "image_url": "https://cdn.shopify.com/s/files/1/0591/5312/1416/files/PS-F.jpg?v=1784132150",
          "product_type": "Sauce",
          "published_at": "2026-06-23T05:48:00-04:00"
        }
      ]
    },
    "status": "success"
  }
}

About the Vinisfoods API

What the API Returns

The list_products endpoint returns the complete Vini's Foods catalog in a single response. Each product object includes id, title, handle, product_type, vendor, tags, published_at, and image_url. The variants array within each product carries size options, per-variant pricing, and availability status — making it straightforward to track stock and price changes across SKUs.

Variants and Availability

Variant-level data is where the most actionable information lives. Each entry in the variants array corresponds to a distinct size or pack option, carrying its own price and availability flag. This allows you to distinguish between, for example, a 250g and 500g version of the same product without additional requests.

Coverage and Scope

The API covers Vini's Foods' Italian-inspired grocery range, including packaged foods, condiments, and specialty ingredients available for delivery across India. The product_type and tags fields allow downstream filtering and categorization of catalog items. The response also includes vendor data, which can help distinguish house-brand products from third-party items stocked by the store.

Pagination

Results are returned in a single page containing the full catalog. There are no pagination parameters or cursor tokens — one call to list_products yields the entire product set along with a total integer count confirming how many products were returned.

Reliability & maintenanceVerified

The Vinisfoods API is a managed, monitored endpoint for vinisfoods.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vinisfoods.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official vinisfoods.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor price changes across Vini's Foods variants by polling list_products and comparing per-variant prices over time.
  • Build a product availability tracker that alerts when a specific SKU's availability flag changes to out-of-stock.
  • Aggregate Italian specialty grocery data from multiple Indian online stores, using product_type and tags for normalization.
  • Populate a comparison shopping tool for Italian-inspired ingredients available for delivery in India.
  • Index the full catalog into a search engine using handle, title, and tags as searchable fields.
  • Feed product images and descriptions into a recipe or meal-planning app using image_url and product_type.
  • Track catalog growth over time by recording the total count and published_at dates from periodic API calls.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Vini's Foods have an official developer API?+
Vini's Foods does not publish an official public developer API. This Parse API provides structured access to their product catalog without requiring any direct integration with their storefront.
What does the `list_products` endpoint return for each product?+
Each product object includes id, title, handle, product_type, vendor, tags, published_at, image_url, and a variants array. The variants carry size options, individual prices, and availability status. The response also includes a top-level total field indicating how many products were returned.
Can I filter products by type, tag, or vendor through the API?+
The list_products endpoint takes no input parameters and returns the full catalog in one response. Filtering by product_type, tags, or vendor needs to be done client-side after retrieving the data. You can fork this API on Parse and revise it to add server-side filtering parameters.
Does the API return customer reviews or ratings for products?+
Not currently. The API covers catalog data including pricing, variants, availability, tags, and images. Reviews and ratings are not included in the response. You can fork this API on Parse and revise it to add a reviews endpoint if that data is accessible on the site.
How fresh is the catalog data, and does the API reflect real-time stock changes?+
The API returns current catalog data at the time of each request, including variant-level availability flags. However, there is no webhook or push mechanism — freshness depends on how frequently you call list_products. For near-real-time stock tracking, polling at regular intervals is the recommended approach.
Page content last updated . Spec covers 1 endpoint from vinisfoods.com.
Related APIs in Food DiningSee all →
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
wine.com API
Search and browse wines on Wine.com to discover detailed information including pricing, ratings, and product metadata across thousands of selections. Find top-rated wines, browse current sales, and access comprehensive details on any wine to make informed purchasing decisions.
victory.co.il API
Search and browse Victory supermarket's full product catalog, view detailed item information, explore product categories, and discover current promotions all in one place. Get instant access to pricing, availability, and special offers to find exactly what you need for your shopping.
vistaprint.com API
Search and browse Vistaprint's catalog of 5,800+ products across business cards, promotional items, clothing, signage, and packaging, with instant access to product names, quantities, pricing, and detailed specifications. Filter by category or search for specific items to compare options and get complete product information for your ordering decisions.
vinted.it API
Browse and search secondhand listings on Vinted.it to retrieve product names, IDs, and direct URLs. Access homepage listings and search results in real-time.
continente.pt API
Browse and retrieve product data from Continente.pt, Portugal's leading supermarket chain. Search by keyword, browse categories, fetch full product details including nutritional info, and access current promotions and new arrivals.
zeptonow.com API
zeptonow.com API
vkusvill.ru API
Search and browse products from VkusVill, a Russian grocery retailer, including detailed product information, customer reviews, current offers, and category-filtered offer listings. Get real-time access to product categories, pricing, and availability across the store's full range of items.