---
title: "Search restaurants"
method: GET
path: "/search/restaurants/{tenant}"
tags: ["Search", "publicly-accessible"]
---

# Search restaurants

`GET /search/restaurants/{tenant}`

Get restaurants available in a given lat-long which match a search term.
Matches can be found against the name, a cuisine or a product.

## Path parameters

- `tenant` string, required

## Query parameters

- `searchTerm` string, required
- `latlong` number[], required
- `limit` number

## Response `200`

Success

- RestaurantSearchResponse
  - `restaurants` RestaurantSearchResponseItem[] — Ordered list of restaurants
    - `restaurantId` string — The id of the restaurant
    - `isSponsored` boolean — Flag to indicate if the restaurant is sponsored, so has been promoted to the top of the results
    - `products` RestaurantSearchProduct[] — Ordered list of products available from the restaurant which matched the search term
      - `productId` string — The id of the product
      - `fullName` string — The full name of the product
      - `price` number — The price of the product

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `422` — Unprocessable Entity - search term rejected
- `500` — Internal Server Error
- `503` — Service Unavailable

---

[API](https://skmtc.net/just-eat/apis/just-eat-api.md) · [All operations](https://skmtc.net/just-eat/apis/just-eat-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/just-eat/just-eat-api/revisions/4b25c7d97a53/schema)
