Discover/Raisin API
live

Raisin APIraisin.digital

Search natural wine bars, restaurants, wine shops, winemakers, and events from Raisin.digital. Get geo-filtered venue maps with coordinates and category filters.

This API takes change requests — .
Endpoint health
verified 6d ago
search
get_map_venues
2/2 passing latest checkself-healing
Endpoints
2
Updated
28d ago

What is the Raisin API?

The Raisin.digital API exposes 2 endpoints for searching and mapping the natural wine venues, winemakers, and events listed on Raisin.digital. The search endpoint returns a mixed result set across cities, districts, venues, winemakers, and events matched by keyword, while get_map_venues returns geocoded venue objects filterable by bounding box or city ID, making it straightforward to build location-aware natural wine discovery tools.

Try it
Language code for results.
Search term (place name, country, city, winemaker, event name, etc.)
api.parse.bot/scraper/fde4bd63-449d-411a-ba71-42bb4477a710/<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 POST 'https://api.parse.bot/scraper/fde4bd63-449d-411a-ba71-42bb4477a710/search' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "lang": "en",
  "query": "Paris"
}'
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 raisin-digital-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.

from parse_apis.raisin_natural_wine_and_food_guide_api import Raisin, SearchResult, Venue, City, VenueCategory, Lang

raisin = Raisin()

# Search for venues and places matching "Paris" in French
for result in raisin.searchresults.search(query="Paris", lang=Lang.FR):
    print(result.name, result.object_type, result.href)

# Get wine bars in Paris using the city constructor
paris = raisin.city(id=2988507)
for venue in paris.venues(category=VenueCategory.BARS):
    print(venue.name, venue.latitude, venue.longitude, venue.likevote_number)
All endpoints · 2 totalmissing one? ·

Search for places, venues, winemakers, and events by keyword. Returns a mixed list of cities, districts, venues, winemakers, and events matching the query, ordered by relevance. Each result carries an object_type discriminator ('city', 'district', 'venue', 'winemaker', 'event') and fields vary per type. Paginates as a single page.

Input
ParamTypeDescription
langstringLanguage code for results.
queryrequiredstringSearch term (place name, country, city, winemaker, event name, etc.)
Response
{
  "type": "object",
  "fields": {
    "count": "integer total of matching results",
    "items": "array of search result objects with varying fields per object_type"
  },
  "sample": {
    "data": {
      "count": 31,
      "items": [
        {
          "id": 2988507,
          "href": "https://www.raisin.digital/en/explore/france/ile-de-france/paris/",
          "name": "Paris",
          "region": {
            "id": 3012874,
            "name": "Ile-de-France",
            "object_type": "region"
          },
          "country": {
            "id": 3017382,
            "code": "fr",
            "name": "France",
            "object_type": "country"
          },
          "object_type": "city",
          "object_type_name": "City"
        }
      ]
    },
    "status": "success"
  }
}

About the Raisin API

Search Endpoint

The search endpoint accepts a required query string and an optional lang code, returning a count integer and an items array whose objects vary by object_type. A single query can surface cities, districts, venues, winemakers, and events in one response, ordered by relevance. This makes it useful for autocomplete, exploratory search, and resolving human-readable place names to Raisin city IDs that other endpoints can consume.

Map Venues Endpoint

The get_map_venues endpoint retrieves venues suitable for map display. You can scope results either by passing a city_id (obtained from the search endpoint, e.g. 2988507 for Paris) or by supplying a geographic bounding box using the north, south, east, and west decimal-degree parameters — all four bounds are required when city_id is omitted. An optional category parameter narrows results to exactly one of: all, restaurants, bars, wine_shops, accommodations, or winemakers. Each venue object in the response includes id, name, latitude, longitude, likevote_number, comment_number, an is array of type tags, and object_type.

Data Shape and Coverage

Raisin.digital is a curated guide focused on natural wine venues globally. The data reflects the venue listings, winemaker profiles, and events published on that platform. Venue objects carry social signals (likevote_number, comment_number) alongside coordinates, which allows basic ranking by community engagement in addition to geographic filtering.

Reliability & maintenanceVerified

The Raisin API is a managed, monitored endpoint for raisin.digital — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when raisin.digital 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 raisin.digital 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
6d ago
Latest check
2/2 endpoints 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
  • Build a map of natural wine bars and restaurants in a given city using get_map_venues with a city_id.
  • Autocomplete a location or winemaker search field using keyword results from the search endpoint.
  • Filter natural wine shops within a custom geographic bounding box for a travel itinerary app.
  • Rank venues by community engagement using the likevote_number and comment_number fields.
  • Resolve a city name to a Raisin city ID via search before querying map venues for that city.
  • Aggregate natural wine event listings by querying event object_type results from the search endpoint.
  • Display winemaker profiles alongside nearby venues by combining search results filtered by object_type.
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 Raisin.digital offer an official developer API?+
Raisin.digital does not publish a documented public developer API. This Parse API provides structured access to the venue, winemaker, and event data available on the site.
What does the `get_map_venues` endpoint return, and how do I filter by venue type?+
It returns an array of venue objects each containing id, name, latitude, longitude, likevote_number, comment_number, an is type-tag array, and object_type. Pass the category parameter with exactly one of all, restaurants, bars, wine_shops, accommodations, or winemakers to narrow the result set.
Can I retrieve detailed venue pages — menus, hours, address, or contact details — through this API?+
Not currently. The API covers venue coordinates, names, type tags, and community counts via get_map_venues, plus mixed search results via search. Individual venue detail pages with menus, opening hours, or contact information are not exposed. You can fork this API on Parse and revise it to add an endpoint that fetches those details.
What is the difference between using `city_id` and a bounding box in `get_map_venues`?+
Passing a city_id returns all venues Raisin.digital associates with that city, regardless of exact coordinate bounds. Passing a bounding box (north, south, east, west) returns venues whose coordinates fall within that geographic rectangle, which is useful for arbitrary or cross-city regions. The two modes are mutually exclusive — use one or the other.
Does the `search` endpoint support pagination or return all results at once?+
The endpoint returns a count and a flat items array in a single response with no documented pagination parameters. For large result sets this means you receive whatever the endpoint returns in one call. You can fork this API on Parse and revise it to add offset or page-based pagination if the underlying data supports it.
Page content last updated . Spec covers 2 endpoints from raisin.digital.
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.
resy.com API
Search for restaurants across cities and check real-time availability to find open reservation slots on Resy. Discover trending and top-rated venues with detailed information about dining options, menus, and available time slots across selected dates.
winecompanion.com.au API
Browse and explore Australian wineries from Wine Companion's comprehensive directory, including contact details, ratings, and regional locations. Search and filter by state, region, or facilities to find wineries across Australia.
guide.michelin.com API
Access data from guide.michelin.com.
eventup.com API
Search EventUp for event venues by city, browse featured venues, fetch available venue filter facets for a location, and get autocomplete suggestions for venue and place queries.
tripadvisor.com API
Search for travel destinations and discover hotels with detailed information like ratings, reviews, and amenities. Get comprehensive place details to help plan your perfect trip and compare accommodation options.
rausgegangen.de API
Discover events happening in German cities by searching for concerts, festivals, and shows—filtering by location, date, or category to find exactly what you're looking for. Get detailed information about venues, artists, and ticket lotteries all in one place.