---
title: "List Restaurants"
method: GET
path: "/admin/tabelog/restaurants"
tags: ["admin-tabelog"]
---

# List Restaurants

`GET /admin/tabelog/restaurants`

Paginated browse of tabelog_restaurants with filters.

## Query parameters

- `pref` string, nullable — Prefecture slug, e.g. tokyo
- `area_big` string, nullable — Big area code, e.g. A1316
- `area_leaf` string, nullable — Leaf area code, e.g. A131601
- `cuisine` string, nullable — Substring of cuisine_labels (Japanese)
- `name` string, nullable — Substring of name (ja or en)
- `enriched_only` boolean
- `described_only` boolean
- `page` integer
- `page_size` integer
- `order` string

## Response `200`

Successful Response

- PaginatedRestaurants
  - `page` integer, required
  - `page_size` integer, required
  - `total` integer, required
  - `rows` RestaurantRow[], required
    - `rst_id` string, required
    - `name` string, nullable, required
    - `name_en` string, nullable, required
    - `pref` string, required
    - `area_big` string, required
    - `area_leaf` string, required
    - `rating` number, nullable, required
    - `rating_count` integer, nullable, required
    - `price_range` string, nullable, required
    - `cuisine_labels` string[], nullable, required
    - `business_status` string, nullable, required
    - `enriched` boolean, required
    - `described` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/stardrift/apis/fastapi.md) · [All operations](https://skmtc.dev/stardrift/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stardrift/fastapi/revisions/00746572572a/schema)
