Discover/Zabihah API
live

Zabihah APIzabihah.com

Search halal restaurants by location and cuisine, retrieve ratings, reviews, hours, contact details, and halal status from Zabihah.com via two clean endpoints.

This API takes change requests — .
Endpoint health
verified 5d ago
search_restaurants
get_restaurant
2/2 passing latest checkself-healing
Endpoints
2
Updated
10d ago

What is the Zabihah API?

The Zabihah.com API provides access to the world's largest halal restaurant directory through 2 endpoints. The search_restaurants endpoint returns up to 300 nearby restaurants sorted by distance, including cuisine type, price level, ratings, and review counts. The get_restaurant endpoint returns full details for a single location: phone number, website, menu URL, opening hours, amenities, social media links, and user reviews.

This call costs3 credits / call— charged only on success
Try it
Maximum number of restaurants to return.
Filter results by cuisine type (e.g. 'Indian', 'Mediterranean', 'Pakistani', 'American'). Case-insensitive partial match against the restaurant's cuisine tags.
City name or area to search near (e.g. 'Chicago', 'New York', 'London').
api.parse.bot/scraper/7d525839-78db-4e5b-a6cb-7838a2d1a23e/<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/7d525839-78db-4e5b-a6cb-7838a2d1a23e/search_restaurants?limit=10&cuisine=Indian&location=Chicago' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Search for halal restaurants near a specified location. Returns up to 300 restaurants sorted by distance, with full details including address, cuisine, halal status, ratings, and business hours. Optionally filter results by cuisine type. Location is resolved to coordinates via geocoding.

Input
ParamTypeDescription
limitintegerMaximum number of restaurants to return.
cuisinestringFilter results by cuisine type (e.g. 'Indian', 'Mediterranean', 'Pakistani', 'American'). Case-insensitive partial match against the restaurant's cuisine tags.
locationstringCity name or area to search near (e.g. 'Chicago', 'New York', 'London').
Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "location": "string",
    "restaurants": "array of restaurant summaries with id, name, address, city, state, latitude, longitude, cuisine, price, rating, review_count, google_rating, google_review_count, distance, halal_status, halal_description, alcohol_policy, halal_rank_score, halal_rank_tier, hand_slaughtered, is_trending, will_return_percentage, business_hours, cover_image"
  },
  "sample": {
    "total": 3,
    "location": "Chicago, IL",
    "restaurants": [
      {
        "id": "fb023c29-0414-43ca-ae66-f0ae3fdc145e",
        "city": "Chicago",
        "name": "Brü Chicago",
        "price": "$$$",
        "state": "IL",
        "rating": "0",
        "address": "180 West Washington Street",
        "cuisine": [
          "American",
          "Coffeehouse"
        ],
        "distance": "0.1 mi",
        "latitude": "41.8835785",
        "longitude": "-87.633504",
        "cover_image": "https://molmcuxhcqubtpydpxuo.supabase.co/storage/v1/object/public/restaurants/restaurants/dccda52a-f5d3-45b0-a96f-c99596c9d27b/cover-1774737403689.jpg",
        "is_trending": false,
        "halal_status": "Fully halal",
        "review_count": 0,
        "google_rating": 5,
        "alcohol_policy": "No alcohol allowed",
        "business_hours": [
          {
            "day": "Monday",
            "hours": "07:30 AM - 04:00 PM"
          }
        ],
        "halal_rank_tier": "Verified",
        "halal_rank_score": 78,
        "hand_slaughtered": false,
        "halal_description": "Staff has given verbal assurance of halal status.",
        "google_review_count": 1,
        "will_return_percentage": null
      }
    ]
  }
}

About the Zabihah API

Search Halal Restaurants by Location

The search_restaurants endpoint accepts a location string (city name or area) and resolves it to coordinates to find nearby halal restaurants. Results include each restaurant's id, name, address, cuisine, price, rating, review_count, and geographic coordinates. You can pass an optional cuisine filter (case-insensitive) to narrow results to a specific type such as Indian, Pakistani, Mediterranean, or American. The limit parameter caps how many results are returned, up to 300.

Full Restaurant Detail

Once you have a restaurant's UUID from search results, pass it to get_restaurant as restaurant_id to retrieve the full record. The response includes a structured address object with street, city, state, postal_code, and country; contact fields like phone and website; a menu_url; an array of cuisine tags; and an array of reviews each containing author, rating, text, and date. Business hours, amenities, and social media links are also returned where available.

Halal Status and Coverage

Zabihah.com focuses specifically on halal-verified restaurants, so every record in the dataset reflects halal certification or community-confirmed halal status. The data is sourced from Zabihah.com's directory, which covers locations across North America, Europe, and other regions with significant Muslim populations. Cuisine diversity in the results reflects the directory's actual listings and will vary by city.

Reliability & maintenanceVerified

The Zabihah API is a managed, monitored endpoint for zabihah.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when zabihah.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 zabihah.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
5d 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 halal restaurant finder app that surfaces nearby options sorted by distance using latitude/longitude from search results.
  • Filter restaurant listings by cuisine type (e.g. 'Mediterranean') to serve users with specific dietary preferences.
  • Display business contact details — phone, website, and menu URL — for halal restaurants in a local directory.
  • Aggregate user reviews and ratings from Zabihah.com to compare halal restaurants in a given city.
  • Populate restaurant cards with opening hours and amenities data for a travel or trip-planning product.
  • Build a cuisine-specific halal guide (e.g. Pakistani food in Chicago) using the cuisine filter and city-based search.
  • Cross-reference halal restaurant locations using latitude and longitude for map-based visualizations.
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 Zabihah.com have an official developer API?+
Zabihah.com does not currently offer a publicly documented developer API. This Parse API provides structured access to the data available on zabihah.com.
What does the search_restaurants endpoint return, and how does the cuisine filter work?+
It returns an array of restaurant summaries including id, name, address, cuisine, price, rating, review_count, and coordinates. The optional cuisine parameter is case-insensitive and matches against the cuisine tag for each listing — for example, passing 'indian' will return restaurants tagged as Indian cuisine near the specified location.
Does the API return halal certification details or certification body names?+
The current endpoints return halal status at the restaurant level but do not expose granular certification body names or certification document data. The API covers general halal status, cuisine, ratings, and reviews. You can fork this API on Parse and revise it to add an endpoint targeting certification detail pages if that data is available on the source.
Can I retrieve a list of all restaurants in a country or browse by region without specifying a city?+
The search_restaurants endpoint requires a location input to anchor results and returns up to 300 restaurants sorted by distance from that point. Country-wide or region-wide browsing without a specific location is not currently supported. You can fork this API on Parse and revise it to add broader geographic browsing if the source supports it.
What review data is available in the get_restaurant response?+
The reviews array in the get_restaurant response includes each review's author, rating, text, and date. Photo attachments, review helpfulness votes, and reviewer profile links are not included in the current response shape.
Page content last updated . Spec covers 2 endpoints from zabihah.com.
Related APIs in Food DiningSee all →
opentable.com API
Search for restaurants across the US with ratings, reviews, photos, and pricing information, plus get real-time availability and autocomplete suggestions as you type. Check reservation openings and explore detailed restaurant features to find and book your perfect dining experience.
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.
fdc.nal.usda.gov API
Search across thousands of foods to get detailed nutritional information, serving sizes, and ingredient data from USDA's comprehensive food database. Find nutrition facts for branded products, legacy foods, and foundation foods all in one place.
guide.michelin.com API
Access data from guide.michelin.com.
opentable.ca API
Search and discover restaurants on OpenTable, view detailed information like menus and reviews, and check real-time dining availability across metro areas. Find top-rated restaurants in your location and instantly see which tables are open for your preferred date and time.
flipp.com API
Search for grocery deals and weekly advertisements across multiple retailers by keyword, store location, or zip code to find the best prices on items you need. Browse flyer items and current promotions to plan your shopping and save money on groceries.
waitrose.com API
Search Waitrose & Partners' online grocery catalog to find products with detailed information including pricing, current promotions, and availability. Get autocomplete suggestions for faster browsing and access complete product details to compare items and find the best deals.
carrefour.es API
Access data from carrefour.es.