# Zabihah — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for halal restaurants worldwide by location and cuisine type, then access detailed information like contact details, ratings, halal certification status, and customer reviews from Zabihah.com's comprehensive directory. Find the perfect halal dining option with verified restaurant data all in one place.

**Category:** Food & Dining | **Website:** [www.zabihah.com/](https://www.zabihah.com/) | **Docs:** [parse.bot/marketplace/dd871452-fb88-499d-8631-e4ab2918a281/zabihah-com-api](https://parse.bot/marketplace/dd871452-fb88-499d-8631-e4ab2918a281/zabihah-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-zabihah-com-api-dd871452/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_restaurant

Get detailed information about a specific halal restaurant including description, phone number, website, full address with postal code, reviews, amenities, social media links, and opening hours. Requires a restaurant ID (UUID) obtained from search_restaurants results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `restaurant_id` | string | Yes | UUID of the restaurant (from search_restaurants results). |
| `slug` | string | No | URL slug for the restaurant page. Can be any value; defaults to 'restaurant'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zabihah-com-api-dd871452/get_restaurant \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"restaurant_id":"<string>","slug":"<string>"}'
```

### search_restaurants

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cuisine` | string | No | Filter results by cuisine type (e.g. 'Indian', 'Mediterranean', 'Pakistani', 'American'). Case-insensitive partial match against the restaurant's cuisine tags. |
| `limit` | integer | No | Maximum number of restaurants to return. |
| `location` | string | No | City name or area to search near (e.g. 'Chicago', 'New York', 'London'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-zabihah-com-api-dd871452/search_restaurants \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cuisine":"<string>","limit":"<integer>","location":"<string>"}'
```
