# Food Grab — 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 GrabFood restaurants by location and retrieve complete menu listings with prices and details for any store. Access real-time restaurant information and full dining options using a guest token obtained from the browser.

**Category:** Food & Dining | **Website:** [food.grab.com/id/id/restaurants](https://food.grab.com/id/id/restaurants) | **Docs:** [parse.bot/marketplace/61680848-5b80-48c3-9776-2a6b57630f09/food-grab-com-api](https://parse.bot/marketplace/61680848-5b80-48c3-9776-2a6b57630f09/food-grab-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-food-grab-com-api-61680848/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_merchant_menu

Get the full menu (all food items) for a specific GrabFood merchant/restaurant, including categories, prices, descriptions, images, and modifier options.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `guest_token` | string | Yes | Guest authentication JWT from browser sessionStorage('guest_token') on food.grab.com. Valid for 30 days. |
| `latlng` | string | No | Latitude,longitude for location context (comma-separated, e.g. '-6.1767352,106.826504'). |
| `merchant_id` | string | Yes | Merchant ID from search_restaurants results[*].id (e.g. 'IDGFSTI00001mce'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-food-grab-com-api-61680848/get_merchant_menu \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"guest_token":"<string>","latlng":"<string>","merchant_id":"<string>"}'
```

### search_restaurants

Search and list GrabFood restaurants by location with optional keyword filter. Returns paginated results with restaurant details including name, cuisine, rating, delivery fee, and location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country_code` | string | No | ISO country code for the GrabFood region (e.g. 'ID' for Indonesia, 'SG' for Singapore, 'TH' for Thailand). |
| `guest_token` | string | Yes | Guest authentication JWT from browser sessionStorage('guest_token') on food.grab.com. Valid for 30 days. |
| `keyword` | string | No | Search keyword to filter restaurants by name or cuisine. |
| `latlng` | string | No | Latitude,longitude for location-based search (comma-separated, e.g. '-6.1767352,106.826504'). |
| `offset` | integer | No | Pagination offset (increment by page_size for next page). |
| `page_size` | integer | No | Number of results per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-food-grab-com-api-61680848/search_restaurants \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country_code":"<string>","guest_token":"<string>","keyword":"<string>","latlng":"<string>","offset":"<integer>","page_size":"<integer>"}'
```
