example-data.com

restaurants / #95

Welch LLC

japanese · North Brando · $$ · ★ 4.0 (2718)

25530 Lincoln Highway

Phone
(528) 453-2963

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/95" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/95"
);
const restaurant = await res.json();
import type { Restaurant } from "https://example-data.com/types/restaurants.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/restaurants/95"
);
const restaurant = (await res.json()) as Restaurant;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/95"
)
restaurant = res.json()
{
  "id": 95,
  "name": "Welch LLC",
  "slug": "welch-llc-95",
  "cuisine": "japanese",
  "priceRange": "$$",
  "rating": 4,
  "ratingCount": 2718,
  "countryAlpha2": "SA",
  "city": "North Brando",
  "neighborhood": "Fife",
  "address": "25530 Lincoln Highway",
  "phone": "(528) 453-2963",
  "website": null,
  "hasDelivery": false,
  "isOpen": true,
  "latitude": -50.846152,
  "longitude": -175.165825,
  "createdAt": "2025-05-06T14:20:18.632Z",
  "updatedAt": "2025-05-06T14:20:18.632Z"
}
Draftbit